lib/fog/rackspace/requests/queues/get_claim.rb in fog-1.22.0 vs lib/fog/rackspace/requests/queues/get_claim.rb in fog-1.22.1
- old
+ new
@@ -1,11 +1,9 @@
module Fog
module Rackspace
class Queues
-
class Real
-
# This operation queries the specified claim for the specified queue. Claims with malformed IDs or claims that are not found by ID are ignored.
#
# @param [String] queue_name Specifies the name of the queue.
# @param [Integer] claim_id Specifies the claim ID.
# @return [Excon::Response] response
@@ -19,11 +17,10 @@
:expects => 200,
:method => 'GET',
:path => "queues/#{queue_name}/claims/#{claim_id}"
)
end
-
end
class Mock
def get_claim(queue_name, claim_id)
queue = mock_queue!(queue_name)
@@ -33,9 +30,8 @@
response.status = 200
response.body = claim.to_h
response
end
end
-
end
end
end