C0 code coverage information
Generated on Mon Aug 13 01:18:54 -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 Expectations
3 module StringHelpers
4 def starts_with?(prefix)
5 to_s[0..(prefix.to_s.length - 1)] == prefix.to_s
6 end
7 end
8 end
9 end
10
11 class String
12 include Spec::Expectations::StringHelpers
13 end
14
15 class Symbol
16 include Spec::Expectations::StringHelpers
17 end
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.