2011-02-17 13:44:46 -05:00
|
|
|
require 'ecloud/spec_helper'
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
if Fog.mocking?
|
2011-02-17 13:44:46 -05:00
|
|
|
describe "Fog::Ecloud::Compute::Vdcs", :type => :mock_tmrk_ecloud_model do
|
2010-06-17 19:58:09 -04:00
|
|
|
subject { @vcloud }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should respond_to(:vdcs) }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
describe :class do
|
|
|
|
subject { @vcloud.vdcs.class }
|
2011-02-17 13:44:46 -05:00
|
|
|
its(:model) { should == Fog::Ecloud::Compute::Vdc }
|
2010-06-17 19:58:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :vdcs do
|
|
|
|
subject { @vcloud.vdcs }
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should_not respond_to(:create) }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2011-02-17 13:44:46 -05:00
|
|
|
it { should be_an_instance_of(Fog::Ecloud::Compute::Vdcs) }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
its(:length) { should == 2 }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it { should have_members_of_the_right_model }
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-10-17 19:06:44 -04:00
|
|
|
its(:organization_uri) { should == @mock_organization.href }
|
2010-06-17 19:58:09 -04:00
|
|
|
end
|
2010-05-16 12:09:25 -04:00
|
|
|
end
|
2010-06-17 19:58:09 -04:00
|
|
|
else
|
2010-05-16 12:09:25 -04:00
|
|
|
end
|