Sha256: c93c5636f4544812813a162df080e33649d2499639d5b9e8523555bc2611e7ec
Contents?: true
Size: 674 Bytes
Versions: 19
Compression:
Stored size: 674 Bytes
Contents
module Fog module Compute class OpenStack class Real def list_hosts(options = {}) request( :expects => [200, 203], :method => 'GET', :path => 'os-hosts.json', :query => options ) end end class Mock def list_hosts(options = {}) 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
Version data entries
19 entries across 19 versions & 3 rubygems