Sha256: f0610b0f3e3c47260bc7b4da417417e51515e1fbf9d358896707f53a349e41a1
Contents?: true
Size: 587 Bytes
Versions: 42
Compression:
Stored size: 587 Bytes
Contents
module Fog module Workflow class OpenStack class V2 class Real def get_execution(execution_id) request( :expects => 200, :method => "GET", :path => "executions/#{execution_id}" ) end end class Mock def get_execution(_execution_id) response = Excon::Response.new response.status = 200 response.body = {"state" => "running", "id" => "1111"} response end end end end end end
Version data entries
42 entries across 40 versions & 3 rubygems