spec/ecloud/models/public_ip_spec.rb in fog-0.8.2 vs spec/ecloud/models/public_ip_spec.rb in fog-0.9.0
- old
+ new
@@ -1,28 +1,28 @@
require 'ecloud/spec_helper'
if Fog.mocking?
- describe "Fog::Ecloud::Compute::PublicIp", :type => :mock_tmrk_ecloud_model do
+ describe "Fog::Compute::Ecloud::PublicIp", :type => :mock_tmrk_ecloud_model do
subject { @vcloud }
describe :class do
- subject { Fog::Ecloud::Compute::PublicIp }
+ subject { Fog::Compute::Ecloud::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() }
+ subject { Fog::Compute::Ecloud::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) }
+ it { should be_an_instance_of(Fog::Compute::Ecloud::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 }