Sha256: b0ea5e52492cad86def9a2297d0a0309f992c762f684200190ced029dbf962a5
Contents?: true
Size: 631 Bytes
Versions: 32
Compression:
Stored size: 631 Bytes
Contents
require 'ecloud/spec_helper' if Fog.mocking? describe "Fog::Compute::Ecloud::Networks", :type => :mock_tmrk_ecloud_model do subject { @vcloud } it { should respond_to(:networks) } describe :class do subject { @vcloud.networks.class } its(:model) { should == Fog::Compute::Ecloud::Network } end describe :networks do subject { @vcloud.vdcs[0].networks } it { should_not respond_to(:create) } it { should be_an_instance_of(Fog::Compute::Ecloud::Networks) } its(:length) { should == 2 } it { should have_members_of_the_right_model } end end else end
Version data entries
32 entries across 32 versions & 8 rubygems