Skip to content

Commit

Permalink
[Vcloud] fix up delete_node and delete_internet_service
Browse files Browse the repository at this point in the history
  • Loading branch information
freeformz authored and Wesley Beary committed Jun 28, 2010
1 parent 0b83c22 commit 357ad40
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ module Terremark
module Ecloud

module Real
basic_request :delete_node, 200, 'DELETE', {}, ""
basic_request :delete_internet_service, 200, 'DELETE', {}, ""
end

module Mock

def delete_node(node_uri)
def delete_internet_service(service_uri)
Fog::Mock.not_implemented
end
end
Expand Down
19 changes: 19 additions & 0 deletions lib/fog/vcloud/terremark/ecloud/requests/delete_node.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module Fog
module Vcloud
module Terremark
module Ecloud

module Real
basic_request :delete_node, 200, 'DELETE', {}, ""
end

module Mock

def delete_node(node_uri)
Fog::Mock.not_implemented
end
end
end
end
end
end

0 comments on commit 357ad40

Please sign in to comment.