Sha256: c828f22c96961fec9c4b20415bc5a4b41d47de157b6e49d7ecc3fd5fb23c6d56

Contents?: true

Size: 876 Bytes

Versions: 27

Compression:

Stored size: 876 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(Fog::Errors::BadRequest)
    end

  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
fog-0.0.29 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.28 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.27 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.26 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.25 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.24 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.23 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.22 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.21 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.20 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.19 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.18 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.17 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.16 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.15 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.14 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.13 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.12 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.11 spec/aws/requests/ec2/create_key_pair_spec.rb
fog-0.0.10 spec/aws/requests/ec2/create_key_pair_spec.rb