public
Description: CI::Reporter is an add-on to Test::Unit and RSpec that allows you to generate XML reports of your test and/or spec runs.
Homepage: http://caldersphere.rubyforge.org/ci_reporter
Clone URL: git://github.com/nicksieger/ci_reporter.git
mathie (author)
Fri Apr 24 04:37:27 -0700 2009
nicksieger (committer)
Fri Apr 24 10:37:58 -0700 2009
ci_reporter / acceptance / rspec_example_spec.rb
100644 19 lines (15 sloc) 0.268 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
describe "RSpec example" do
  it "should succeed" do
    true.should be_true
    nil.should be_nil
  end
 
  it "should fail" do
    violated
  end
 
  it "should be pending"
 
  describe "nested" do
    it "should succeed" do
      true.should be_true
    end
  end
end