Sha256: 2d784522dc1999585908505cd35536c5b08e8880ea850e4dc2f001b925721e49
Contents?: true
Size: 675 Bytes
Versions: 20
Compression:
Stored size: 675 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def get_workflow(identifier) request( :expects => 200, :method => "GET", :path => "workflows/#{identifier}" ) end end class Mock def get_workflow(_identifier) response = Excon::Response.new response.status = 200 response.body = {"version" => "2.0", "name" => "workflow1", "description" => "d1"} response end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems