Sha256: 0a54bd9e552d774f198fba7343b9351159ee601209dafd016368d05b149d890e
Contents?: true
Size: 810 Bytes
Versions: 22
Compression:
Stored size: 810 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def list_workflows(params = {}) body = Fog::JSON.encode(params) request( :body => body, :expects => 200, :method => "GET", :path => "workflows" ) end end class Mock def list_workflows(_params = {}) response = Excon::Response.new response.status = 200 response.body = {"workflows" => [{"name" => "workflow1", "description" => "d1"}, {"name" => "workflow2", "description" => "d2"}]} response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems