Sha256: 5007757501d31a3cb9d3e240a4782127035950f94ddd3206c60d25db25c54b80
Contents?: true
Size: 589 Bytes
Versions: 22
Compression:
Stored size: 589 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def get_task(id) request( :expects => 200, :method => "GET", :path => "tasks/#{id}" ) end end class Mock def get_task(_id) response = Excon::Response.new response.status = 200 response.body = {"version" => "2.0", "task1" => {"id" => ['test_id']}} response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems