Sha256: 73c9dd24943e77f1c74da42a5fa0df6f7a7b69172bc7d9c338b3db97960b144f
Contents?: true
Size: 498 Bytes
Versions: 20
Compression:
Stored size: 498 Bytes
Contents
module Fog module OpenStack class Introspection class Real def get_rules(rule_id) request( :expects => 200, :method => 'GET', :path => "rules/#{rule_id}" ) end end class Mock def get_rules(_rule_id) 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