Sha256: 652e4cd6e14dc5f6694e0cbde0410aac651938091638a6db0b56da0f699924a8
Contents?: true
Size: 587 Bytes
Versions: 21
Compression:
Stored size: 587 Bytes
Contents
module Fog module OpenStack class Workflow 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
21 entries across 21 versions & 3 rubygems