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.
Name Total lines Lines of code Total coverage Code coverage
lib/spec/runner/formatter/rdoc_formatter.rb 24 21
100.0% 
100.0% 
 1 module Spec
 2   module Runner
 3     module Formatter
 4       class RdocFormatter < BaseTextFormatter
 5         def add_behaviour(name)
 6           @output.puts "# #{name}"
 7         end
 8   
 9         def example_passed(example)
10           @output.puts "# * #{example.description}"
11           @output.flush
12         end
13 
14         def example_failed(example, counter, failure)
15           @output.puts "# * #{example.description} [#{counter} - FAILED]"
16         end
17         
18         def example_pending(behaviour_name, example_name, message)
19           @output.puts "# * #{behaviour_name} #{example_name} [PENDING: #{message}]"
20         end
21       end
22     end
23   end
24 end

Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.

Valid XHTML 1.0! Valid CSS!