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/requests/delete_node_spec.rb

30 lines
883 B
Ruby

require 'ecloud/spec_helper'
if Fog.mocking?
#FIXME: with rspec2
describe "Fog::Ecloud, 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