Sha256: 7b6c8ba6e3541f021b669857df587a334475e743abaf0baa22a0c429d397e8ae

Contents?: true

Size: 670 Bytes

Versions: 101

Compression:

Stored size: 670 Bytes

Contents

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

Version data entries

101 entries across 99 versions & 11 rubygems

Version Path
fog-1.21.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.20.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.19.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.18.0.20131209090811 tests/rackspace/models/block_storage/snapshot_tests.rb