mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
850 B
Ruby
28 lines
850 B
Ruby
require 'ecloud/spec_helper'
|
|
|
|
if Fog.mocking?
|
|
describe "Fog::Ecloud::Compute::InternetServices", :type => :mock_tmrk_ecloud_model do
|
|
context "as an attribute of an internet_service" do
|
|
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first }
|
|
|
|
it { should respond_to(:nodes) }
|
|
|
|
describe :class do
|
|
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.class }
|
|
its(:model) { should == Fog::Ecloud::Compute::Node }
|
|
end
|
|
|
|
describe :nodes do
|
|
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes }
|
|
|
|
it { should respond_to(:create) }
|
|
|
|
it { should be_an_instance_of(Fog::Ecloud::Compute::Nodes) }
|
|
|
|
its(:length) { should == 3 }
|
|
|
|
it { should have_members_of_the_right_model }
|
|
end
|
|
end
|
|
end
|
|
end
|