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/volume_tests.rb

28 lines
729 B
Ruby
Raw Normal View History

Shindo.tests('Fog::Rackspace::BlockStorage | volume', ['rackspace']) do
pending if Fog.mocking?
service = Fog::Rackspace::BlockStorage.new
options = { :display_name => "fog_#{Time.now.to_i.to_s}", :size => 100 }
model_tests(service.volumes, options, false) do
@instance.wait_for { ready? }
tests('#attached?').succeeds do
@instance.state = 'in-use'
returns(true) { @instance.attached? }
end
tests('#snapshots').succeeds do
snapshot = service.snapshots.create({ :volume_id => @instance.id })
snapshot.wait_for { ready? }
returns(true) { @instance.snapshots.first.id == snapshot.id }
snapshot.destroy
end
@instance.wait_for { snapshots.empty? }
end
end