Sha256: f1f55cf162b85e7cd95753cd590a0bdccf2c9465b18f087579da545b4947bdfa

Contents?: true

Size: 878 Bytes

Versions: 11

Compression:

Stored size: 878 Bytes

Contents

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

describe 'EC2.create_key_pair' do
  describe 'success' do

    after(:each) do
      ec2.delete_key_pair('fog_key_pair')
    end

    it "should return proper attributes" do
      actual = ec2.create_key_pair('fog_key_pair')
      actual.body['keyFingerprint'].should be_a(String)
      actual.body['keyMaterial'].should be_a(String)
      actual.body['keyName'].should be_a(String)
      actual.body['requestId'].should be_a(String)
    end

  end
  describe 'failure' do

    before(:each) do
      ec2.create_key_pair('fog_key_pair')
    end

    after(:each) do
      ec2.delete_key_pair('fog_key_pair')
    end

    it "should raise a BadRequest when the key pair already exists" do
      lambda {
        ec2.create_key_pair('fog_key_pair')
      }.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/create_key_pair_spec.rb
fog-0.0.39 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.38 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.37 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.36 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.35 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.34 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.33 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.32 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.31 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.30 spec/aws/requests/ec2/create_key_pair_spec.rb