Sha256: 88ec2f14d8056e14c66de5d6dfca0135cd965814a00861b3900ca283e9e9795c
Contents?: true
Size: 608 Bytes
Versions: 22
Compression:
Stored size: 608 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def get_action_execution(execution_id) request( :expects => 200, :method => "GET", :path => "action_executions/#{execution_id}" ) end end class Mock def get_action_execution(_execution_id) response = Excon::Response.new response.status = 200 response.body = {"state" => "running", "id" => "1111"} response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems