Sha256: 5f84358a52dedb5b0450419f999df9e98f3d3e0e6d04ae022731f885873533d4

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

require 'ecloud/spec_helper'

if Fog.mocking?
  describe "Fog::Ecloud::Compute::PublicIp", :type => :mock_tmrk_ecloud_model do
    subject { @vcloud }

    describe :class do
      subject { Fog::Ecloud::Compute::PublicIp }

      it { should have_identity(:href) }
      it { should have_only_these_attributes([:name, :id, :href]) }
    end

    context "with no uri" do

      subject { Fog::Ecloud::Compute::PublicIp.new() }

      it { should have_all_attributes_be_nil }
    end

    context "as a collection member" do
      subject { @vcloud.vdcs[0].public_ips[0].reload; @vcloud.vdcs[0].public_ips[0] }

      it { should be_an_instance_of(Fog::Ecloud::Compute::PublicIp) }

      its(:href)                  { should == @mock_public_ip.href }
      its(:identity)              { should == @mock_public_ip.href }
      its(:name)                  { should == @mock_public_ip.name }
      its(:id)                    { should == @mock_public_ip.object_id.to_s }

      its(:internet_services)     { should have(2).services }

    end
  end
else
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.8.2 spec/ecloud/models/public_ip_spec.rb
fog-0.8.1 spec/ecloud/models/public_ip_spec.rb
fog-0.8.0 spec/ecloud/models/public_ip_spec.rb
fog-0.7.2 spec/ecloud/models/public_ip_spec.rb
fog-0.7.1 spec/ecloud/models/public_ip_spec.rb
fog-0.7.0 spec/ecloud/models/public_ip_spec.rb
fog-0.6.0 spec/ecloud/models/public_ip_spec.rb