C0 code coverage information
Generated on Mon Aug 13 01:18:55 -0400 2007 with rcov 0.8.0
Code reported as executed by Ruby looks like this...
and this: this line is also marked as covered.
Lines considered as run by rcov, but not reported by Ruby, look like this,
and this: these lines were inferred by rcov (using simple heuristics).
Finally, here's a line marked as not executed.
1 module Spec
2 module Runner
3 module Formatter
4 class ProgressBarFormatter < BaseTextFormatter
5 def add_behaviour(name)
6 end
7
8 def example_failed(example, counter, failure)
9 @output.print colourise('F', failure)
10 @output.flush
11 end
12
13 def example_passed(example)
14 @output.print green('.')
15 @output.flush
16 end
17
18 def example_pending(behaviour_name, example_name, message)
19 super
20 @output.print yellow('P')
21 @output.flush
22 end
23
24 def start_dump
25 @output.puts
26 @output.flush
27 end
28 end
29 end
30 end
31 end
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.