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

29 lines
850 B
Ruby
Raw Normal View History

require 'ecloud/spec_helper'
2010-06-30 00:23:15 -04:00
if Fog.mocking?
describe "Fog::Compute::Ecloud::InternetServices", :type => :mock_tmrk_ecloud_model do
2010-06-30 00:23:15 -04:00
context "as an attribute of an internet_service" do
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first }
it { should respond_to(:nodes) }
2010-06-30 00:23:15 -04:00
describe :class do
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.class }
its(:model) { should == Fog::Compute::Ecloud::Node }
2010-06-30 00:23:15 -04:00
end
describe :nodes do
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes }
it { should respond_to(:create) }
2010-06-30 00:23:15 -04:00
it { should be_an_instance_of(Fog::Compute::Ecloud::Nodes) }
2010-06-30 00:23:15 -04:00
its(:length) { should == 3 }
2010-06-30 00:23:15 -04:00
it { should have_members_of_the_right_model }
end
end
end
end