Sha256: 028ee2fc60f416ddc0d9a039689b000f26184a9509c3d25b35651c9edc438b6d

Contents?: true

Size: 887 Bytes

Versions: 11

Compression:

Stored size: 887 Bytes

Contents

require File.dirname(__FILE__) + '/../../../spec_helper'

describe 'EC2.delete_snapshot' do
  describe 'success' do

    before(:each) do
      @volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
      @snapshot_id = ec2.create_snapshot(@volume_id).body['snapshotId']
    end

    after(:each) do
      ec2.delete_volume(@volume_id)
    end

    it "should return proper attributes" do
      eventually do
        actual = ec2.delete_snapshot(@snapshot_id)
        unless actual.body.empty?
          actual.body['requestId'].should be_a(String)
          [false, true].should include(actual.body['return'])
        end
      end
    end

  end
  describe 'failure' do

    it "should raise a BadRequest error if snapshot does not exist" do
      lambda {
        ec2.release_address('snap-00000000')
      }.should raise_error(Excon::Errors::BadRequest)
    end

  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fog-0.0.40 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.39 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.38 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.37 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.36 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.35 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.34 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.33 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.32 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.31 spec/aws/requests/ec2/delete_snapshot_spec.rb
fog-0.0.30 spec/aws/requests/ec2/delete_snapshot_spec.rb