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