aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test/unit/assertionfailederror.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-16 13:55:09 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-16 13:55:09 +0000
commit0ebf9b176380e691d3505e6c96cb0e33c6d892e4 (patch)
tree830e7a0e1821edf0488e74e22ae4e0a0e520c74d /lib/test/unit/assertionfailederror.rb
parent7485e91f76b7149c421900934adb146913142f8c (diff)
downloadruby-0ebf9b176380e691d3505e6c96cb0e33c6d892e4.tar.gz
* lib/test/unit: removed test/unit.
* lib/test/unit.rb: new compatibility layer using minitest. * bin/testrb: use above. * test/runner.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/assertionfailederror.rb')
-rw-r--r--lib/test/unit/assertionfailederror.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/test/unit/assertionfailederror.rb b/lib/test/unit/assertionfailederror.rb
deleted file mode 100644
index a21e4b5870..0000000000
--- a/lib/test/unit/assertionfailederror.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#--
-#
-# Author:: Nathaniel Talbott.
-# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
-# License:: Ruby license.
-
-module Test
- module Unit
-
- # Thrown by Test::Unit::Assertions when an assertion fails.
- class AssertionFailedError < StandardError
- end
- end
-end