Sha256: 0e0fb5f9fb904fdd6688392b2d04eb023ee7f351f3b08bc3b2b2157c94c9204c
Contents?: true
Size: 532 Bytes
Versions: 47
Compression:
Stored size: 532 Bytes
Contents
module Fog module Introspection class OpenStack class Real def get_introspection(node_id) request( :expects => 200, :method => "GET", :path => "introspection/#{node_id}" ) end end class Mock def get_introspection(_node_id) response = Excon::Response.new response.status = 200 response.body = {"error" => "null", "finished" => "true"} response end end end end end
Version data entries
47 entries across 45 versions & 3 rubygems