Methods
C
N
T
Class Public methods
new(target, helpers, block, strict)
# File actionpack/test/abstract_unit.rb, line 346
def initialize(target, helpers, block, strict)
  super(target)
  @helpers = helpers
  @block = block
  @strict = strict
end
Instance Public methods
controller_class()
# File actionpack/test/abstract_unit.rb, line 353
def controller_class
  helpers = @helpers
  block = @block
  Class.new(@strict ? super : ActionController::Base) {
    include helpers
    define_method(:process) { |name| block.call(self) }
    def to_a; [200, {}, []]; end
  }
end
to_a()
# File actionpack/test/abstract_unit.rb, line 359
def to_a; [200, {}, []]; end