global

def tick(mark = PASS)

@returns nothing

Increments the example count and displays the current progress
def tick(mark = PASS)
  @example_results << mark
  @current = (@current > @example_count) ? @example_count : @current + 1
  dump_progress
end