Sha256: 5dcb65141fdff195247f03d74fc666703ad5ae5fe3828c8b12c43915fe9c3df8

Contents?: true

Size: 1.57 KB

Versions: 7

Compression:

Stored size: 1.57 KB

Contents

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

describe 'Fog::AWS::EC2::Instances' do

  describe "#all" do

    it "should return a Fog::AWS::EC2::Instances" do
      ec2.instances.all.should be_a(Fog::AWS::EC2::Instances)
    end

    it "should include persisted instances" do
      instance = ec2.instances.create(:image_id => GENTOO_AMI)
      ec2.instances.get(instance.id).should_not be_nil
      instance.destroy
    end

  end

  describe "#create" do

    before(:each) do
      @instance = ec2.instances.create(:image_id => GENTOO_AMI)
    end

    after(:each) do
      @instance.destroy
    end

    it "should return a Fog::AWS::EC2::Instance" do
      @instance.should be_a(Fog::AWS::EC2::Instance)
    end

    it "should exist on ec2" do
      ec2.instances.get(@instance.id).should_not be_nil
    end

  end

  describe "#get" do

    it "should return a Fog::AWS::EC2::Instance if a matching instance exists" do
      instance = ec2.instances.create(:image_id => GENTOO_AMI)
      get = ec2.instances.get(instance.id)
      instance.attributes.should == get.attributes
      instance.destroy
    end

    it "should return nil if no matching instance exists" do
      ec2.instances.get('i-00000000').should be_nil
    end

  end

  describe "#new" do

    it "should return a Fog::AWS::EC2::Instance" do
      ec2.instances.new(:image_id => GENTOO_AMI).should be_a(Fog::AWS::EC2::Instance)
    end

  end

  describe "#reload" do

    it "should return a Fog::AWS::EC2::Instances" do
      ec2.instances.all.reload.should be_a(Fog::AWS::EC2::Instances)
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.0.39 spec/aws/models/ec2/instances_spec.rb
fog-0.0.38 spec/aws/models/ec2/instances_spec.rb
fog-0.0.37 spec/aws/models/ec2/instances_spec.rb
fog-0.0.36 spec/aws/models/ec2/instances_spec.rb
fog-0.0.35 spec/aws/models/ec2/instances_spec.rb
fog-0.0.34 spec/aws/models/ec2/instances_spec.rb
fog-0.0.33 spec/aws/models/ec2/instances_spec.rb