# File lib/fog/storage/requests/rackspace/delete_object.rb, line 12
        def delete_object(container, object)
          request(
            :expects  => 204,
            :method   => 'DELETE',
            :path     => "#{URI.escape(container)}/#{URI.escape(object)}"
          )
        end