Sha256: 18c3ff9098b6d58fef9ecd663fe6c6ec5077370b7a414ae7c94194d217069d51

Contents?: true

Size: 722 Bytes

Versions: 91

Compression:

Stored size: 722 Bytes

Contents

Shindo.tests("HP::BlockStorage | snapshots", ['hp', 'block_storage', 'snapshots']) do

  @volume = HP[:block_storage].volumes.create(:name => "testsnapvol", :size => 1)
  @volume.wait_for { ready? } unless Fog.mocking?

  model_tests(HP[:block_storage].snapshots, {:name => "fogsnaptests", :description => "fogsnaptests-desc", :volume_id => @volume.id}, true)

  tests("new snapshot") do
    @snapshot = HP[:block_storage].snapshots.create(:name => "testvol", :volume_id => @volume.id)
    @snapshot.wait_for { ready? } unless Fog.mocking?

    test("get(#{@snapshot.id})") do
      HP[:block_storage].snapshots.get(@snapshot.id) != nil?
    end

    after do
      @snapshot.destroy
    end
  end

  @volume.destroy

end

Version data entries

91 entries across 91 versions & 9 rubygems

Version Path
gapinc-fog-1.12.1 tests/hp/models/block_storage/snapshot_tests.rb
fog-1.12.1 tests/hp/models/block_storage/snapshot_tests.rb
fog-1.12.0 tests/hp/models/block_storage/snapshot_tests.rb
hpfog-0.0.20 tests/hp/models/block_storage/snapshot_tests.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/tests/hp/models/block_storage/snapshot_tests.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/tests/hp/models/block_storage/snapshot_tests.rb
fog-1.11.1 tests/hp/models/block_storage/snapshot_tests.rb
fog-1.11.0 tests/hp/models/block_storage/snapshot_tests.rb
fog-1.10.1 tests/hp/models/block_storage/snapshot_tests.rb
fog-test-me-1.10.0 tests/hp/models/block_storage/snapshot_tests.rb
fog-1.10.0 tests/hp/models/block_storage/snapshot_tests.rb