Sha256: 6b144fb64dc6a04d502e5f8b54086e4774576cb8b11476294730aa13d994ff6d
Contents?: true
Size: 532 Bytes
Versions: 22
Compression:
Stored size: 532 Bytes
Contents
module Fog module OpenStack class Introspection 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
22 entries across 22 versions & 3 rubygems