mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
b7b7f51b0b
Fog::Compute connection was called outside of the Shindo blocks and failing if rackspace credentials were not present.
25 lines
670 B
Ruby
25 lines
670 B
Ruby
Shindo.tests('Fog::Rackspace::BlockStorage | snapshot', ['rackspace']) do
|
|
service = Fog::Rackspace::BlockStorage.new
|
|
|
|
begin
|
|
volume = service.volumes.create({
|
|
:display_name => "fog_#{Time.now.to_i.to_s}",
|
|
:size => 100
|
|
})
|
|
|
|
volume.wait_for { ready? }
|
|
|
|
options = { :display_name => "fog_#{Time.now.to_i.to_s}", :volume_id => volume.id }
|
|
model_tests(service.snapshots, options, true) do
|
|
@instance.wait_for { ready? }
|
|
|
|
tests('double save').raises(Fog::Rackspace::BlockStorage::IdentifierTaken) do
|
|
@instance.save
|
|
end
|
|
end
|
|
|
|
volume.wait_for { snapshots.empty? }
|
|
ensure
|
|
volume.destroy if volume
|
|
end
|
|
end
|