Sha256: dc945061294faebfddbea2ff51d6b369c302d2bfa8512ce94897239f4af1cdb7

Contents?: true

Size: 929 Bytes

Versions: 32

Compression:

Stored size: 929 Bytes

Contents

require 'ecloud/spec_helper'

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

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

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

    context "with no uri" do
      subject { Fog::Compute::Ecloud::Ip.new() }

      it { should have_all_attributes_be_nil }
    end

    context "as a collection member" do
      subject { @ip = @vcloud.vdcs[0].networks[0].ips[0] }

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

      its(:name) { should == @mock_data.network_ip_from_href(@ip.href).name }
      its(:status) { should == @mock_data.network_ip_from_href(@ip.href).status }
      its(:server) { should == @mock_data.network_ip_from_href(@ip.href).used_by.name }

    end
  end
else
end

Version data entries

32 entries across 32 versions & 8 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
michiels-fog-1.3.1 spec/ecloud/models/ip_spec.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/spec/ecloud/models/ip_spec.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
fog-1.3.1 spec/ecloud/models/ip_spec.rb
fog-1.3.0 spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
fog-1.2.0 spec/ecloud/models/ip_spec.rb
ktheory-fog-1.1.2 spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
fog-1.1.2 spec/ecloud/models/ip_spec.rb
fog_tractical-1.1.4 spec/ecloud/models/ip_spec.rb
fog_tractical-1.1.3 spec/ecloud/models/ip_spec.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/spec/ecloud/models/ip_spec.rb
fog-1.1.1 spec/ecloud/models/ip_spec.rb
fog-1.1.0 spec/ecloud/models/ip_spec.rb