class RHC::Rest::Mock::MockRestKey

Public Class Methods

new(client, name, type, content) click to toggle source
Calls superclass method RHC::Rest::Base.new
# File lib/rhc/rest/mock.rb, line 820
def initialize(client, name, type, content)
  super({}, client)
  @name    = name
  @type    = type
  @content = content
end