Sha256: 81e06ee61e5f3e7a07cae4e575863bf648ef4ae5d93d6b2aa351b1542b3294f3
Contents?: true
Size: 1.03 KB
Versions: 32
Compression:
Stored size: 1.03 KB
Contents
require 'ecloud/spec_helper' if Fog.mocking? describe "Fog::Compute::Ecloud::PublicIp", :type => :mock_tmrk_ecloud_model do subject { @vcloud } describe :class do 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::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::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 } its(:internet_services) { should have(2).services } end end else end
Version data entries
32 entries across 32 versions & 8 rubygems