Sha256: b7df5e70082282929a9b67527d3704237666930fdb59e17a1a2ec126085fe49c
Contents?: true
Size: 536 Bytes
Versions: 22
Compression:
Stored size: 536 Bytes
Contents
module Fog module OpenStack class Network 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
22 entries across 22 versions & 3 rubygems