2013-01-14 17:52:16 -05:00
|
|
|
Shindo.tests("HP::BlockStorage | volumes", ['hp', 'block_storage', 'volumes']) do
|
2012-07-11 17:00:32 -04:00
|
|
|
|
2013-01-14 17:52:16 -05:00
|
|
|
model_tests(HP[:block_storage].volumes, {:name => "fogvoltests", :description => "fogvoltests-desc", :size => 1}, true)
|
2012-07-11 17:00:32 -04:00
|
|
|
|
|
|
|
tests("new volume") do
|
2013-01-14 17:52:16 -05:00
|
|
|
@volume = HP[:block_storage].volumes.create(:name => "testvol", :size => 1)
|
2012-07-11 17:00:32 -04:00
|
|
|
@volume.wait_for { ready? } unless Fog.mocking?
|
|
|
|
|
|
|
|
test("get(#{@volume.id})") do
|
2013-01-14 17:52:16 -05:00
|
|
|
HP[:block_storage].volumes.get(@volume.id) != nil?
|
2012-07-11 17:00:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test("has_attachments?") do
|
|
|
|
@volume.has_attachments? == false
|
|
|
|
end
|
|
|
|
after do
|
|
|
|
@volume.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|