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