1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/openstack/storage_tests.rb
Paul Thornthwaite 330a351ade Remove trailing blank lines
Done with `rubocop --auto-correct --only TrailingBlankLines`
2014-05-26 14:35:26 +01:00

18 lines
521 B
Ruby

Shindo.tests('Fog::Storage[:openstack]', ['openstack', 'storage']) do
storage = Fog::Storage[:openstack]
original_path = storage.instance_variable_get :@path
tests("account changes") do
test("#change_account") do
new_account = 'AUTH_1234567890'
storage.change_account new_account
storage.instance_variable_get(:@path) != original_path
end
test("#reset_account_name") do
storage.reset_account_name
storage.instance_variable_get(:@path) == original_path
end
end
end