Sha256: 151521cf2ffd883af02f241de8d954f1a3f2b6e6710a681e30470f54652e3456
Contents?: true
Size: 928 Bytes
Versions: 19
Compression:
Stored size: 928 Bytes
Contents
require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper') if Fog.mocking? #FIXME: with rspec2 describe "Fog::Vcloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do subject { @vcloud } it { should respond_to :delete_node } describe "#delete_node" do context "with a valid node service uri" do subject { @vcloud.delete_node(@mock_node.href) } it_should_behave_like "all delete responses" it "should change the count by -1" do expect { subject }.to change { @vcloud.get_nodes(@mock_node_collection.href).body[:NodeService].length }.by(-1) end end context "with a nodes uri that doesn't exist" do subject { lambda { @vcloud.delete_node(URI.parse('https://www.fakey.c/piv8vc99')) } } it_should_behave_like "a request for a resource that doesn't exist" end end end else end
Version data entries
19 entries across 19 versions & 1 rubygems