Sha256: 8d48fbc941f1ab9bb96267d6051c65f1c39cf246172b91c0292f73fd0b7212c9
Contents?: true
Size: 612 Bytes
Versions: 21
Compression:
Stored size: 612 Bytes
Contents
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
Version data entries
21 entries across 21 versions & 4 rubygems