class Test::Tap
Attributes
failed[RW]
plan[RW]
run[RW]
Public Class Methods
new()
click to toggle source
# File lib/test/more.rb, line 179 def initialize @plan = 0 @run = 0 @failed = 0 end
Public Instance Methods
failed_incr()
click to toggle source
# File lib/test/more.rb, line 189 def failed_incr @failed += 1 end
run_incr()
click to toggle source
# File lib/test/more.rb, line 185 def run_incr @run += 1 end