1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/block_storage/volumes_tests.rb
2012-09-13 10:26:30 -04:00

11 lines
321 B
Ruby

Shindo.tests('Fog::Rackspace::BlockStorage | volumes', ['rackspace']) do
pending if Fog.mocking?
service = Fog::Rackspace::BlockStorage.new
options = { :display_name => "fog_#{Time.now.to_i.to_s}", :size => 100 }
collection_tests(service.volumes, options, false) do
@instance.wait_for { ready? }
end
end