Sha256: 7a7675ded6c06524ad885479a80af7c2323efcfbcd01202f89d964c02ffe8cf2
Contents?: true
Size: 689 Bytes
Versions: 8
Compression:
Stored size: 689 Bytes
Contents
require 'vcloud/spec_helper' if Fog.mocking? describe "Fog::Vcloud::Terremark::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::Vcloud::Terremark::Ecloud::Vdc } end describe :vdcs do subject { @vcloud.vdcs } it { should_not respond_to :create } it { should be_an_instance_of Fog::Vcloud::Terremark::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
8 entries across 8 versions & 2 rubygems