C0 code coverage information
Generated on Mon May 21 22:36:02 -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 require File.dirname(__FILE__) + '/../spec_helper'
2 require 'test/extend_test'
3
4 describe "Extending Rules" do
5 inherit ExtendTest
6
7 prepend_before(:each) {setup}
8
9 send('define_method', 'add_assertion', Proc.new{})
10 @_result = "unused"
11 @_result.extend(self)
12
13
14 it "should allow rule extension" do
15 test_extend_1
16 test_extend_2
17 end
18
19 it "should allow user extension" do
20 test_extend_user
21 end
22 end
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.