1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/vcloud/terremark/ecloud/models/vdcs_spec.rb

29 lines
740 B
Ruby
Raw Normal View History

2010-05-17 00:09:25 +08:00
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper')
if Fog.mocking?
describe "Fog::Vcloud::Terremark::Ecloud::Vdcs", :type => :mock_tmrk_ecloud_model do
subject { @vcloud }
2010-05-17 00:09:25 +08:00
it { should respond_to :vdcs }
2010-05-17 00:09:25 +08:00
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 }
2010-05-17 00:09:25 +08:00
it { should be_an_instance_of Fog::Vcloud::Terremark::Ecloud::Vdcs }
2010-05-17 00:09:25 +08:00
its(:length) { should == 2 }
2010-05-17 00:09:25 +08:00
it { should have_members_of_the_right_model }
2010-05-17 00:09:25 +08:00
its(:organization_uri) { should == @mock_organization[:info][:href] }
end
2010-05-17 00:09:25 +08:00
end
else
2010-05-17 00:09:25 +08:00
end