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/failing_behaviours_formatter.rb 29 26
100.0% 
100.0% 
 1 module Spec
 2   module Runner
 3     module Formatter
 4       class FailingBehavioursFormatter < BaseTextFormatter      
 5         def add_behaviour(behaviour_name)
 6           if behaviour_name =~ /(.*) \(druby.*\)$/
 7             @behaviour_name = $1
 8           else
 9             @behaviour_name = behaviour_name
10           end
11         end
12       
13         def example_failed(example, counter, failure)
14           unless @behaviour_name.nil?
15             @output.puts @behaviour_name 
16             @behaviour_name = nil
17             @output.flush
18           end
19         end
20 
21         def dump_failure(counter, failure)
22         end
23 
24         def dump_summary(duration, example_count, failure_count, pending_count)
25         end
26       end
27     end
28   end
29 end

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

Valid XHTML 1.0! Valid CSS!