This commit is contained in:
Steve Bazyl 2015-12-16 11:34:10 -08:00
commit d47e96c572
3 changed files with 10 additions and 1 deletions

View File

@ -13,6 +13,7 @@ script: "rake spec:all"
before_install:
- sudo apt-get update
- sudo apt-get install idn
- gem update bundler
notifications:
email:
recipients:

View File

@ -144,7 +144,7 @@ module Google
def prepare!
header.update(options.header) if options && options.header
self.url = url.expand(params) if url.is_a?(Addressable::Template)
url.query_values = query
url.query_values = query.merge(url.query_values || {})
end
# Release any resources used by this command

View File

@ -264,4 +264,12 @@ RSpec.describe Google::Apis::Core::HttpCommand do
command.query['a'] = [1,2,3]
command.execute(client)
end
it 'should not remove initial query parameters' do
stub_request(:get, 'https://www.googleapis.com/zoo/animals?a=1&a=2&a=3&foo=bar')
.to_return(status: [200, ''])
command = Google::Apis::Core::HttpCommand.new(:get, 'https://www.googleapis.com/zoo/animals?foo=bar')
command.query['a'] = [1,2,3]
command.execute(client)
end
end