2011-01-10 01:12:48 -05:00
|
|
|
require 'vcloud/spec_helper'
|
2010-06-09 19:20:14 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
if Fog.mocking?
|
|
|
|
describe "Fog::Vcloud::Terremark::Ecloud::Ips", :type => :mock_tmrk_ecloud_model do
|
|
|
|
subject { @vcloud }
|
|
|
|
|
2010-10-17 19:06:44 -04:00
|
|
|
it { should respond_to :ips }
|
2010-06-17 19:58:09 -04:00
|
|
|
|
|
|
|
describe :class do
|
|
|
|
subject { @vcloud.vdcs[0].networks[0].ips.class }
|
|
|
|
its(:model) { should == Fog::Vcloud::Terremark::Ecloud::Ip }
|
|
|
|
end
|
2010-06-09 19:20:14 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
describe :ips do
|
2010-10-17 19:06:44 -04:00
|
|
|
subject { @vcloud.vdcs[0].networks[0].ips.reload }
|
2010-06-17 19:58:09 -04:00
|
|
|
it { should_not respond_to :create }
|
2010-06-09 19:20:14 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it { should be_an_instance_of Fog::Vcloud::Terremark::Ecloud::Ips }
|
2010-06-09 19:20:14 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
its(:length) { should == 252 }
|
2010-06-09 19:20:14 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it { should have_members_of_the_right_model }
|
|
|
|
end
|
2010-06-09 19:20:14 -04:00
|
|
|
end
|
2010-06-17 19:58:09 -04:00
|
|
|
else
|
2010-06-09 19:20:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|