Sha256: aebbeefe8ac4de631fc9044e506674b3408ad905cfc19a5d16d77d926617cc0f
Contents?: true
Size: 1.6 KB
Versions: 15
Compression:
Stored size: 1.6 KB
Contents
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper') if Fog.mocking? describe "Fog::Vcloud::Terremark::Ecloud::Vdc", :type => :mock_tmrk_ecloud_model do subject { @vcloud } describe :class do subject { Fog::Vcloud::Terremark::Ecloud::Server } it { should have_identity :href } it { should have_only_these_attributes [:href, :type, :name, :status, :network_connections, :os, :virtual_hardware, :storage_size, :links] } end context "with no uri" do subject { Fog::Vcloud::Terremark::Ecloud::Server.new() } it { should have_all_attributes_be_nil } end context "as a collection member" do subject { @vcloud.vdcs[0].servers.first } its(:href) { should == @mock_vm.href } its(:identity) { should == @mock_vm.href } its(:name) { should == @mock_vm.name } its(:cpus) { should == { :count => @mock_vm.cpus, :units => nil } } its(:memory) { should == { :amount => @mock_vm.memory, :units => nil } } its(:disks) { should == @mock_vm.to_configure_vapp_hash[:disks] } end context "as a new server without all info" do before { @vcloud.return_vapp_as_creating! "test123" } subject { @vcloud.vdcs[0].servers.create(@mock_catalog_item.href, { :name => "test123", :row => "foo", :group => "bar", :network_uri => @mock_network.href }) } its(:cpus) { should be_nil } its(:memory) { should be_nil } its(:disks) { should == [] } end end else end
Version data entries
15 entries across 15 versions & 1 rubygems