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