Sha256: 60d6d91747b028198994c4a3c8cca0362700fc5fb978403c7ce01eaab3e4cbb2
Contents?: true
Size: 1008 Bytes
Versions: 19
Compression:
Stored size: 1008 Bytes
Contents
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper') if Fog.mocking? describe "Fog::Vcloud::Terremark::Ecloud::Ip", :type => :mock_tmrk_ecloud_model do subject { @vcloud } describe :class do subject { Fog::Vcloud::Terremark::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::Vcloud::Terremark::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::Vcloud::Terremark::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
19 entries across 19 versions & 1 rubygems