Sha256: e4985f1866655bb680189b4383c6a0c86d46c1861d725209ae481c76c2a041dc
Contents?: true
Size: 744 Bytes
Versions: 47
Compression:
Stored size: 744 Bytes
Contents
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper') if Fog.mocking? describe "Fog::Vcloud::Terremark::Ecloud::Ips", :type => :mock_tmrk_ecloud_model do subject { @vcloud } it { should_not respond_to :ips } describe :class do subject { @vcloud.vdcs[0].networks[0].ips.class } its(:model) { should == Fog::Vcloud::Terremark::Ecloud::Ip } end describe :ips do subject { @vcloud.vdcs[0].networks[0].ips.reload; @vcloud.vdcs[0].networks[0].ips } it { should_not respond_to :create } it { should be_an_instance_of Fog::Vcloud::Terremark::Ecloud::Ips } its(:length) { should == 252 } it { should have_members_of_the_right_model } end end else end
Version data entries
47 entries across 47 versions & 2 rubygems