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 VERSION
3 unless defined? MAJOR
4 MAJOR = 1
5 MINOR = 0
6 TINY = 8
7 RELEASE_CANDIDATE = nil
8
9 # RANDOM_TOKEN: 0.510454315029681
10 REV = "$LastChangedRevision: 2338 $".match(/LastChangedRevision: (\d+)/)[1]
11
12 STRING = [MAJOR, MINOR, TINY].join('.')
13 TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
14 FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')} (r#{REV})"
15
16 NAME = "RSpec"
17 URL = "http://rspec.rubyforge.org/"
18
19 DESCRIPTION = "#{NAME}-#{FULL_VERSION} - BDD for Ruby\n#{URL}"
20 end
21 end
22 end
23
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.