1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/hp/models/block_storage_v2/snapshot_tests.rb

23 lines
681 B
Ruby
Raw Normal View History

Shindo.tests("HP::BlockStorageV2 | snapshot model", ['hp', 'v2', 'block_storage', 'snapshots']) do
@volume = HP[:block_storage_v2].volumes.create(:name => 'testsnap2vol', :size => 1)
@volume.wait_for { ready? } unless Fog.mocking?
model_tests(HP[:block_storage_v2].snapshots, {:name => 'fogsnap2tests', :description => 'fogsnaptests-desc', :volume_id => @volume.id}, true) do
test("get(#{@instance.id})") do
HP[:block_storage_v2].snapshots.get(@instance.id) != nil?
end
test("update(#{@instance.id}") do
@instance.name = 'Updated'
@instance.save
@instance.reload
@instance.name == 'Updated'
end
end
@volume.destroy
end