mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
04d425d6e3
With the help of a few utility methods.
40 lines
993 B
Ruby
40 lines
993 B
Ruby
module Fog
|
|
module Storage
|
|
class Rackspace
|
|
|
|
class Real
|
|
|
|
# Delete an existing container
|
|
#
|
|
# ==== Parameters
|
|
# * name<~String> - Name of container to delete
|
|
# @raise [Fog::Storage::Rackspace::NotFound] - HTTP 404
|
|
# @raise [Fog::Storage::Rackspace::BadRequest] - HTTP 400
|
|
# @raise [Fog::Storage::Rackspace::InternalServerError] - HTTP 500
|
|
# @raise [Fog::Storage::Rackspace::ServiceError]
|
|
def delete_container(name)
|
|
request(
|
|
:expects => 204,
|
|
:method => 'DELETE',
|
|
:path => Fog::Rackspace.escape(name)
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
def delete_container(name)
|
|
c = mock_container! name
|
|
|
|
raise Excon::Errors::Conflict.new 'Conflict' unless c.empty?
|
|
remove_container name
|
|
|
|
response = Excon::Response.new
|
|
response.status = 204
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|