diff options
| author | ryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-10 01:17:21 +0000 |
|---|---|---|
| committer | ryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-10 01:17:21 +0000 |
| commit | 53ac5cd019a39d0a480407cab7cb6775fcda8039 (patch) | |
| tree | 063e9d8bb63224fa05c69fa427c54cbce61c4f6a /lib/test/unit/assertionfailederror.rb | |
| parent | b001079cee3aca8387adeacaf33a78419e167a48 (diff) | |
| download | ruby-53ac5cd019a39d0a480407cab7cb6775fcda8039.tar.gz ruby-53ac5cd019a39d0a480407cab7cb6775fcda8039.tar.xz ruby-53ac5cd019a39d0a480407cab7cb6775fcda8039.zip | |
Restored test/unit
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/assertionfailederror.rb')
| -rw-r--r-- | lib/test/unit/assertionfailederror.rb | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
