2011-02-17 13:44:46 -05:00
|
|
|
require 'ecloud/spec_helper'
|
2010-11-19 13:26:50 -05:00
|
|
|
|
|
|
|
if Fog.mocking?
|
2011-06-20 18:00:48 -04:00
|
|
|
describe "Fog::Compute::Ecloud::InternetServices", :type => :mock_tmrk_ecloud_model do
|
2010-11-19 13:26:50 -05:00
|
|
|
context "as an attribute of a VDC" do
|
|
|
|
subject { @vcloud.vdcs[0] }
|
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should respond_to(:backup_internet_services) }
|
2010-11-19 13:26:50 -05:00
|
|
|
|
|
|
|
describe :class do
|
|
|
|
subject { @vcloud.vdcs[0].backup_internet_services.class }
|
2011-06-20 18:00:48 -04:00
|
|
|
its(:model) { should == Fog::Compute::Ecloud::BackupInternetService }
|
2010-11-19 13:26:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe :backup_internet_services do
|
|
|
|
subject { @vcloud.vdcs[0].backup_internet_services }
|
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should respond_to(:create) }
|
2010-11-19 13:26:50 -05:00
|
|
|
|
2011-06-20 18:00:48 -04:00
|
|
|
it { should be_an_instance_of(Fog::Compute::Ecloud::BackupInternetServices) }
|
2010-11-19 13:26:50 -05:00
|
|
|
|
|
|
|
its(:length) { should == 1 }
|
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should(have_members_of_the_right_model) }
|
2010-11-19 13:26:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|