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