Sha256: d79ed23e976ddb995512a06e853405a8b679fa1dc1081df22eb535bb1fe4d959
Contents?: true
Size: 538 Bytes
Versions: 20
Compression:
Stored size: 538 Bytes
Contents
module Fog module OpenStack class Baremetal class Real def get_chassis(chassis_uuid) request( :expects => [200, 204], :method => 'GET', :path => "chassis/#{chassis_uuid}" ) end end class Mock def get_chassis(_chassis_uuid) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = data[:chassis_collection].first response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems