changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1rspec_lib = File.dirname(__FILE__) + "/../../../../../../lib"
2$:.unshift rspec_lib unless $:.include?(rspec_lib)
3require 'test/unit'
4require 'spec'
5
6class TestCaseWithErrors < Test::Unit::TestCase
7 def test_with_error
8 raise "error raised in TestCaseWithErrors"
9 end
10end