Sha256: bfc9f4c383a0274a8f714443ec30cf8e577639814805b693e05c23e02d32623e
Contents?: true
Size: 536 Bytes
Versions: 39
Compression:
Stored size: 536 Bytes
Contents
module Fog module Network class OpenStack class Real def list_floating_ips(filters = {}) request( :expects => 200, :method => 'GET', :path => 'floatingips', :query => filters ) end end class Mock def list_floating_ips(_filters = {}) Excon::Response.new( :body => {'floatingips' => data[:floating_ips].values}, :status => 200 ) end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems