Sha256: 5712a834672dded365c7fa36eb26e6e8477a5473652acf169a44b949c342046d
Contents?: true
Size: 538 Bytes
Versions: 25
Compression:
Stored size: 538 Bytes
Contents
module Fog module Baremetal class OpenStack 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
25 entries across 23 versions & 3 rubygems