Sha256: 9a1f481cb23add37d0d1d700149abf3228508f909e371e139578c046db8644f7
Contents?: true
Size: 509 Bytes
Versions: 40
Compression:
Stored size: 509 Bytes
Contents
module Fog module Network class OpenStack class Real def list_ports(filters = {}) request( :expects => 200, :method => 'GET', :path => 'ports', :query => filters ) end end class Mock def list_ports(filters = {}) Excon::Response.new( :body => { 'ports' => self.data[:ports].values }, :status => 200 ) end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems