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

31 lines
883 B
Ruby
Raw Normal View History

require 'ecloud/spec_helper'
2010-06-30 00:15:36 -04:00
if Fog.mocking?
#FIXME: with rspec2
describe "Fog::Ecloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
2010-06-30 00:15:36 -04:00
subject { @vcloud }
it { should respond_to(:delete_node) }
2010-06-30 00:15:36 -04:00
describe "#delete_node" do
context "with a valid node service uri" do
subject { @vcloud.delete_node(@mock_node.href) }
2010-06-30 00:15:36 -04:00
it_should_behave_like "all delete responses"
2010-06-30 00:15:36 -04:00
it "should change the count by -1" do
expect { subject }.to change { @vcloud.get_nodes(@mock_node_collection.href).body[:NodeService].length }.by(-1)
2010-06-30 00:15:36 -04:00
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