class FakeRest::RequestMapping

Attributes

content_type[R]
method[R]
path[R]
response_file[R]
status_code[R]

Public Class Methods

new(method, path, status_code, response_file, content_type) click to toggle source
# File lib/fakerest/profileloader.rb, line 8
def initialize(method, path, status_code, response_file, content_type)
  @method = method
  @path = path
  @status_code = status_code
  @response_file = response_file
  @content_type = content_type
end