Sha256: 7f069fe6854ce25ae92adcd5e3b5af477ac00b886a83d58266a182aa6489883c
Contents?: true
Size: 614 Bytes
Versions: 42
Compression:
Stored size: 614 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def update_workflow(definition) body = Fog::JSON.encode(definition) request( :body => body, :expects => 200, :method => "PUT", :path => "workflows" ) end end class Mock def update_workflow(_definition) response = Excon::Response.new response.status = 200 response.body = "" response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems