2011-02-17 10:44:46 -08:00
|
|
|
require 'ecloud/spec_helper'
|
2010-05-28 09:27:12 +08:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
if Fog.mocking?
|
2011-06-20 15:00:48 -07:00
|
|
|
describe "Fog::Compute::Ecloud::InternetServices", :type => :mock_tmrk_ecloud_model do
|
2010-06-18 07:58:09 +08:00
|
|
|
context "as an attribute of a VDC" do
|
|
|
|
subject { @vcloud.vdcs[0] }
|
|
|
|
|
2011-02-15 13:47:14 -08:00
|
|
|
it { should respond_to(:internet_services) }
|
2010-06-18 07:58:09 +08:00
|
|
|
|
|
|
|
describe :class do
|
|
|
|
subject { @vcloud.vdcs[0].internet_services.class }
|
2011-06-20 15:00:48 -07:00
|
|
|
its(:model) { should == Fog::Compute::Ecloud::InternetService }
|
2010-06-18 07:58:09 +08:00
|
|
|
end
|
2010-05-28 09:27:12 +08:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
describe :internet_services do
|
|
|
|
subject { @vcloud.vdcs[0].internet_services }
|
2010-05-28 09:27:12 +08:00
|
|
|
|
2011-02-15 13:47:14 -08:00
|
|
|
it { should respond_to(:create) }
|
2010-05-28 09:27:12 +08:00
|
|
|
|
2011-06-20 15:00:48 -07:00
|
|
|
it { should be_an_instance_of(Fog::Compute::Ecloud::InternetServices) }
|
2010-05-28 09:27:12 +08:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
its(:length) { should == 4 }
|
|
|
|
|
|
|
|
it { should have_members_of_the_right_model }
|
|
|
|
end
|
2010-05-28 09:27:12 +08:00
|
|
|
end
|
|
|
|
end
|
2010-06-18 07:58:09 +08:00
|
|
|
else
|
2010-05-28 09:27:12 +08:00
|
|
|
end
|