Sha256: 61c95c0c5f9b9f3d45458b3e4b3058a85cda2c7cb8e9b3192d94633fdbd9ae4d
Contents?: true
Size: 616 Bytes
Versions: 39
Compression:
Stored size: 616 Bytes
Contents
module Fog module Workflow class OpenStack 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
39 entries across 37 versions & 3 rubygems