Name | Total Lines | Lines of Code | Total Coverage | Code Coverage |
---|---|---|---|---|
rcov/ruby/1.8/gems/rspec-core-2.5.1/lib/rspec/core/mocking/with_rspec.rb | 21 | 16 | 100.00%
|
100.00%
|
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 require 'rspec/mocks' |
2 |
3 module RSpec |
4 module Core |
5 module MockFrameworkAdapter |
6 |
7 def setup_mocks_for_rspec |
8 RSpec::Mocks::setup(self) |
9 end |
10 |
11 def verify_mocks_for_rspec |
12 RSpec::Mocks::verify |
13 end |
14 |
15 def teardown_mocks_for_rspec |
16 RSpec::Mocks::teardown |
17 end |
18 |
19 end |
20 end |
21 end |
Generated on Fri Apr 22 17:22:42 -0700 2011 with rcov 0.9.8