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.30.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.29.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.28.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.27.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.26.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.25.0 tests/rackspace/models/block_storage/snapshot_tests.rb
nsidc-fog-1.24.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.24.0 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.11 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.10 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.9 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.8 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.7 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.6 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.23.0 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.4 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.3 tests/rackspace/models/block_storage/snapshot_tests.rb
ns-fog-1.22.2 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.22.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.22.0 tests/rackspace/models/block_storage/snapshot_tests.rb