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