Sha256: d774be1a1e5ce586362701c6f45f0b7c9157587747bef9d7c925928135f8f263
Contents?: true
Size: 568 Bytes
Versions: 21
Compression:
Stored size: 568 Bytes
Contents
module Fog module OpenStack class Compute class Real def list_address_pools request( :expects => [200, 203], :method => 'GET', :path => "os-floating-ip-pools" ) end end class Mock def list_address_pools response = Excon::Response.new response.status = 200 response.body = { 'floating_ip_pools' => [ {'name' => 'nova'} ] } response end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems