Sha256: 3f53203bfeaaeeae8aaea70e390bb8945179cd1afde12ad1a3185c89a7df991d
Contents?: true
Size: 502 Bytes
Versions: 25
Compression:
Stored size: 502 Bytes
Contents
module Fog module Baremetal class OpenStack class Real def get_node(node_id) request( :expects => [200, 204], :method => 'GET', :path => "nodes/#{node_id}" ) end end class Mock def get_node(_node_id) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = data[:nodes].first response end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems