mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
require 'ecloud/spec_helper'
|
|
|
|
if Fog.mocking?
|
|
describe "Fog::Ecloud::Compute::PublicIp", :type => :mock_tmrk_ecloud_model do
|
|
subject { @vcloud }
|
|
|
|
describe :class do
|
|
subject { Fog::Ecloud::Compute::PublicIp }
|
|
|
|
it { should have_identity(:href) }
|
|
it { should have_only_these_attributes([:name, :id, :href]) }
|
|
end
|
|
|
|
context "with no uri" do
|
|
|
|
subject { Fog::Ecloud::Compute::PublicIp.new() }
|
|
|
|
it { should have_all_attributes_be_nil }
|
|
end
|
|
|
|
context "as a collection member" do
|
|
subject { @vcloud.vdcs[0].public_ips[0].reload; @vcloud.vdcs[0].public_ips[0] }
|
|
|
|
it { should be_an_instance_of(Fog::Ecloud::Compute::PublicIp) }
|
|
|
|
its(:href) { should == @mock_public_ip.href }
|
|
its(:identity) { should == @mock_public_ip.href }
|
|
its(:name) { should == @mock_public_ip.name }
|
|
its(:id) { should == @mock_public_ip.object_id.to_s }
|
|
|
|
its(:internet_services) { should have(2).services }
|
|
|
|
end
|
|
end
|
|
else
|
|
end
|