1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/compute/list_hosts.rb

32 lines
No EOL
607 B
Ruby

module Fog
module Compute
class OpenStack
class Real
def list_hosts
request(
:expects => [200, 203],
:method => 'GET',
:path => 'os-hosts.json'
)
end
end
class Mock
def list_hosts
response = Excon::Response.new
response.status = 200
response.body = { "hosts" => [
{"host_name" => "host.test.net", "service"=>"compute"}
]
}
response
end
end # mock
end # openstack
end # compute
end # fog