mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0192e53ef7
* 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
32 lines
617 B
Ruby
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
|