mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
11 lines
321 B
Ruby
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
|