Methods
- C
- N
- T
Class Public methods
new(defaults, set, block)
Link
Instance Public methods
controller(params, default_controller=true)
Link
controller_reference(controller_param)
Link
# File actionpack/test/abstract_unit.rb, line 395 def controller_reference(controller_param) block = @block set = @set super if @set.strict Class.new(ActionController::Base) { include set.url_helpers define_method(:process) { |name| block.call(self) } def to_a; [200, {}, []]; end } end