fog--fog/tests/core/timeout_tests.rb

11 lines
186 B
Ruby
Raw Normal View History

2011-07-12 03:05:54 +00:00
Shindo.tests('Fog#timeout', 'core') do
tests('timeout').returns(600) do
Fog.timeout
end
tests('timeout = 300').returns(300) do
Fog.timeout = 300
Fog.timeout
end
end