adding all of botlist, initial add
[botlist.git] / openbotlist / WEB-INF / lib / ruby / rspec / spec / spec / interop / test / unit / resources / test_case_with_errors.rb
blob35dcb6b2e5e56309a74f9b9c1ade61c945ba121d
1 rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2 $:.unshift rspec_lib unless $:.include?(rspec_lib)
3 require 'test/unit'
4 require 'spec'
6 class TestCaseWithErrors < Test::Unit::TestCase
7   def test_with_error
8     raise "error raised in TestCaseWithErrors"
9   end
10 end