Sha256: 5b58304d96a96a8165c33130afb32471800a1510fa4bb5e3588a6908dc3bcc4e
Contents?: true
Size: 470 Bytes
Versions: 20
Compression:
Stored size: 470 Bytes
Contents
module Fog module OpenStack class Introspection class Real def list_rules request( :expects => 200, :method => 'GET', :path => "rules" ) end end class Mock def list_rules response = Excon::Response.new response.status = 200 response.body = {"rules" => data[:rules].first} response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems