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-maestrodev-1.15.0.20130829165835 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.15.0 tests/rackspace/models/block_storage/snapshot_tests.rb
gapinc-fog-1.14.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-maestrodev-1.14.0.20130806165225 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.14.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.13.0 tests/rackspace/models/block_storage/snapshot_tests.rb
gapinc-fog-1.12.1.2 tests/rackspace/models/block_storage/snapshot_tests.rb
gapinc-fog-1.12.1.1 tests/rackspace/models/block_storage/snapshot_tests.rb
gapinc-fog-1.12.1a tests/rackspace/models/block_storage/snapshot_tests.rb
gapinc-fog-1.12.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.12.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.12.0 tests/rackspace/models/block_storage/snapshot_tests.rb
hpfog-0.0.20 tests/rackspace/models/block_storage/snapshot_tests.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/tests/rackspace/models/block_storage/snapshot_tests.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.11.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.11.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.10.1 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-test-me-1.10.0 tests/rackspace/models/block_storage/snapshot_tests.rb
fog-1.10.0 tests/rackspace/models/block_storage/snapshot_tests.rb