Sha256: 58873ebd749c1254fa02da054e6b7786f9cfb3901dd4bf72a1de9a3a597f33a1
Contents?: true
Size: 737 Bytes
Versions: 39
Compression:
Stored size: 737 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def list_action_executions request( :expects => 200, :method => "GET", :path => "action_executions" ) end end class Mock def list_action_executions response = Excon::Response.new response.status = 200 response.body = {"action_executions" => [{"state" => "ERROR", "id" => "1111"}, {"state" => "RUNNING", "id" => "2222"}]} response end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems