Methods
#
N
P
R
Included Modules
Class Public methods
new()
# File actionpack/test/abstract_unit.rb, line 455
def initialize
  @queue = Queue.new
end
Instance Public methods
<<(o)
# File actionpack/test/abstract_unit.rb, line 463
def << o
  o[2] = DRbObject.new(o[2]) if o
  @queue << o
end
pop()
# File actionpack/test/abstract_unit.rb, line 467
def pop; @queue.pop; end
record(reporter, result)
# File actionpack/test/abstract_unit.rb, line 459
def record reporter, result
  reporter.record result
end