Sha256: caf2a86a2e1c27b523924a0a94ad98d20f83465340eb60dc6f0328785633a54b
Contents?: true
Size: 645 Bytes
Versions: 42
Compression:
Stored size: 645 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def validate_workflow(definition) body = Fog::JSON.encode(definition) request( :body => body, :expects => 200, :method => "POST", :path => "workflows/validate" ) end end class Mock def validate_workflow(_definition) response = Excon::Response.new response.status = 200 response.body = "{\"valid\": true}" response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems