Sha256: c703bc556471d294f3b80d41094a13f3828c82c8c111f13a830cebae590bbea9
Contents?: true
Size: 607 Bytes
Versions: 66
Compression:
Stored size: 607 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"} ] } response end end # mock end # openstack end # compute end # fog
Version data entries
66 entries across 66 versions & 13 rubygems