mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
5a33ff76b1
Should have tested Fog::Core::Connection since Fog::Connection is the backwards compatible one. Also adds a bit more documentation.
26 lines
752 B
Ruby
26 lines
752 B
Ruby
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
|