Sha256: 07e5cf144ca2566945cbfbff7d9532604121533d7ff1ee8189c812939e176359
Contents?: true
Size: 532 Bytes
Versions: 47
Compression:
Stored size: 532 Bytes
Contents
module Fog module Introspection class OpenStack class Real def abort_introspection(node_id) request( :body => "", :expects => 202, :method => "POST", :path => "introspection/#{node_id}/abort" ) end end class Mock def abort_introspection(_node_id) response = Excon::Response.new response.status = 202 response.body = "" response end end end end end
Version data entries
47 entries across 45 versions & 3 rubygems