Sha256: 894adf2d7320aebda7d6dcf494adea7bc231066c60573ee8f7e59a26b1f7a822
Contents?: true
Size: 662 Bytes
Versions: 32
Compression:
Stored size: 662 Bytes
Contents
require 'ecloud/spec_helper' if Fog.mocking? describe "Fog::Compute::Ecloud::Vdcs", :type => :mock_tmrk_ecloud_model do subject { @vcloud } it { should respond_to(:vdcs) } describe :class do subject { @vcloud.vdcs.class } its(:model) { should == Fog::Compute::Ecloud::Vdc } end describe :vdcs do subject { @vcloud.vdcs } it { should_not respond_to(:create) } it { should be_an_instance_of(Fog::Compute::Ecloud::Vdcs) } its(:length) { should == 2 } it { should have_members_of_the_right_model } its(:organization_uri) { should == @mock_organization.href } end end else end
Version data entries
32 entries across 32 versions & 8 rubygems