]> git.openstreetmap.org Git - rails.git/blob - vendor/gems/rspec-1.1.2/spec/spec/interop/test/unit/testcase_spec_with_test_unit.rb
Show whether a trace is public or private in the trace list, so that a user can easil...
[rails.git] / vendor / gems / rspec-1.1.2 / spec / spec / interop / test / unit / testcase_spec_with_test_unit.rb
1 require "test/unit"
2 require File.dirname(__FILE__) + '/../../../../spec_helper.rb'
3
4 describe "TestCase#method_name" do
5   it "should equal the description of the example" do
6     @method_name.should == "should equal the description of the example"
7   end
8
9   def test_this
10     true.should be_true
11   end
12
13   def testThis
14     true.should be_true
15   end
16
17   def testament
18     raise "testament is not a test"
19   end
20 end