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/networks_spec.rb

28 lines
631 B
Ruby
Raw Normal View History

require 'ecloud/spec_helper'
2010-06-09 19:20:14 -04:00
if Fog.mocking?
describe "Fog::Compute::Ecloud::Networks", :type => :mock_tmrk_ecloud_model do
subject { @vcloud }
2010-06-09 19:20:14 -04:00
it { should respond_to(:networks) }
2010-06-09 19:20:14 -04:00
describe :class do
subject { @vcloud.networks.class }
its(:model) { should == Fog::Compute::Ecloud::Network }
end
2010-06-09 19:20:14 -04:00
describe :networks do
subject { @vcloud.vdcs[0].networks }
it { should_not respond_to(:create) }
2010-06-09 19:20:14 -04:00
it { should be_an_instance_of(Fog::Compute::Ecloud::Networks) }
2010-06-09 19:20:14 -04:00
its(:length) { should == 2 }
2010-06-09 19:20:14 -04:00
it { should have_members_of_the_right_model }
end
2010-06-09 19:20:14 -04:00
end
else
2010-06-09 19:20:14 -04:00
end