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
Thom Mahoney & Eugene Howe 0192e53ef7 openstack modifications
* add model and collection for security group rules
* add mock data for networks
* returns address in create_server mock
* proper security group rule mocks
* proper security group mocks
2013-12-09 16:31:16 -08:00

32 lines
617 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", "zone" => "az1"}
]
}
response
end
end # mock
end # openstack
end # compute
end # fog