mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
10 lines
186 B
Ruby
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
|