Sha256: 6b6a7e5d7dfabb33ed467bc25d6197d22d1541adeabed5f1ec16eaea5cd669af
Contents?: true
Size: 616 Bytes
Versions: 22
Compression:
Stored size: 616 Bytes
Contents
module Fog module OpenStack class Workflow class V2 class Real def get_action(name) request( :expects => 200, :method => "GET", :path => "actions/#{URI.encode(name)}" ) end end class Mock def get_action(_name) response = Excon::Response.new response.status = 200 response.body = {"version" => "2.0", "action1" => {"input" => ['test_id']}} response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems