Methods
C
N
T
Class Public methods
new(defaults, set, block)
# File actionpack/test/controller/routing_test.rb, line 1758
def initialize(defaults, set, block)
  super(defaults)
  @block = block
  @set = set
end
Instance Public methods
controller_reference(controller_param)
# File actionpack/test/controller/routing_test.rb, line 1764
def controller_reference(controller_param)
  block = @block
  set = @set
  Class.new(ActionController::Base) {
    include set.url_helpers
    define_method(:process) { |name| block.call(self) }
    def to_a; [200, {}, []]; end
  }
end
to_a()
# File actionpack/test/controller/routing_test.rb, line 1770
def to_a; [200, {}, []]; end