Sha256: 543d3824bea9f52171f114b95187495025fd62c3a55004e2f314f9a4f4161813
Contents?: true
Size: 752 Bytes
Versions: 61
Compression:
Stored size: 752 Bytes
Contents
Shindo.tests('Fog::Core::Connection', ['core']) do raises(ArgumentError, "raises ArgumentError when no arguments given") do Fog::Core::Connection.new end tests('new("http://example.com")') do @instance = Fog::Core::Connection.new("http://example.com") responds_to([:request, :reset]) tests('user agent').returns("fog/#{Fog::VERSION}") do @instance.instance_variable_get(:@excon).data[:headers]['User-Agent'] end end tests('new("http://example.com", true)') do Fog::Core::Connection.new("http://example.com", true) end tests('new("http://example.com", false, options")') do options = { :debug_response => false } Fog::Core::Connection.new("http://example.com", true, options) end end
Version data entries
61 entries across 61 versions & 5 rubygems