mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
642 B
Ruby
27 lines
642 B
Ruby
require 'ecloud/spec_helper'
|
|
|
|
if Fog.mocking?
|
|
describe "Fog::Ecloud::Compute::PublicIps", :type => :mock_tmrk_ecloud_model do
|
|
subject { @vcloud }
|
|
|
|
it { should respond_to(:public_ips) }
|
|
|
|
describe :class do
|
|
subject { @vcloud.public_ips.class }
|
|
its(:model) { should == Fog::Ecloud::Compute::PublicIp }
|
|
end
|
|
|
|
describe :public_ips do
|
|
subject { @vcloud.vdcs[0].public_ips }
|
|
it { should_not respond_to(:create) }
|
|
|
|
it { should be_an_instance_of(Fog::Ecloud::Compute::PublicIps) }
|
|
|
|
its(:length) { should == 3 }
|
|
|
|
it { should have_members_of_the_right_model }
|
|
end
|
|
end
|
|
else
|
|
end
|
|
|