Sha256: 35e8721fc38677759d945a4ba368a50d0391cdf2ddc97fc8d3e9284a535fb1c9
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_workbook(definition) body = Fog::JSON.encode(definition) request( :body => body, :expects => 200, :method => "PUT", :path => "workbooks" ) end end class Mock def update_workbook(_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