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