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