From da33d0fee6a5cff53e8aac887bba1bebba2dd50b Mon Sep 17 00:00:00 2001 From: yugui Date: Tue, 30 Sep 2008 14:13:23 +0000 Subject: Reverts the changes of lib/test/unit.rb in r19502 and r19501. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/test/unit/assertionfailederror.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/test/unit/assertionfailederror.rb (limited to 'lib/test/unit/assertionfailederror.rb') diff --git a/lib/test/unit/assertionfailederror.rb b/lib/test/unit/assertionfailederror.rb new file mode 100644 index 000000000..a21e4b587 --- /dev/null +++ b/lib/test/unit/assertionfailederror.rb @@ -0,0 +1,14 @@ +#-- +# +# 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 -- cgit