Sha256: ffe7f326c55978a7642a5af38480478d1425087928bc616ea05cd6d6dfed12de
Contents?: true
Size: 850 Bytes
Versions: 32
Compression:
Stored size: 850 Bytes
Contents
require 'ecloud/spec_helper' if Fog.mocking? describe "Fog::Compute::Ecloud::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::Compute::Ecloud::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::Compute::Ecloud::Nodes) } its(:length) { should == 3 } it { should have_members_of_the_right_model } end end end end
Version data entries
32 entries across 32 versions & 8 rubygems