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/ip_spec.rb
2011-06-20 15:00:48 -07:00

33 lines
929 B
Ruby

require 'ecloud/spec_helper'
if Fog.mocking?
describe "Fog::Compute::Ecloud::Ip", :type => :mock_tmrk_ecloud_model do
subject { @vcloud }
describe :class do
subject { Fog::Compute::Ecloud::Ip }
it { should have_identity(:href) }
it { should have_only_these_attributes([:href, :name, :status, :server, :rnat, :id]) }
end
context "with no uri" do
subject { Fog::Compute::Ecloud::Ip.new() }
it { should have_all_attributes_be_nil }
end
context "as a collection member" do
subject { @ip = @vcloud.vdcs[0].networks[0].ips[0] }
it { should be_an_instance_of(Fog::Compute::Ecloud::Ip) }
its(:name) { should == @mock_data.network_ip_from_href(@ip.href).name }
its(:status) { should == @mock_data.network_ip_from_href(@ip.href).status }
its(:server) { should == @mock_data.network_ip_from_href(@ip.href).used_by.name }
end
end
else
end