Sha256: 5aa753794475a2a5c82789bfcfa7679e5c056bfbb754f78cfdd1a314cfe0fe18
Contents?: true
Size: 545 Bytes
Versions: 7
Compression:
Stored size: 545 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 => { 'floating_ips' => self.data[:floating_ips].values }, :status => 200 ) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems