1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/core/timeout_tests.rb
2011-07-12 13:05:54 +10:00

10 lines
186 B
Ruby

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