diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-04 07:30:51 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-04 07:30:51 +0000 |
commit | 16a89660f3609acb317f1d131a1a20f19efde23f (patch) | |
tree | f8e152df417039b1b4943b80e34429123592056c /lib/test/unit/error.rb | |
parent | 18571c1166b7a82bad24b47d0b38bb685fef3bdb (diff) | |
download | ruby-16a89660f3609acb317f1d131a1a20f19efde23f.tar.gz ruby-16a89660f3609acb317f1d131a1a20f19efde23f.tar.xz ruby-16a89660f3609acb317f1d131a1a20f19efde23f.zip |
* test/mini/test_mini_test.rb: recovered. It had been temporarily removed at r19645.
* test/mini/test_mini_mock.rb: ditto.
* test/mini/test_mini_spec.rb: ditto.
* lib/test/**/*: replaced by miniunit.
miniunit had been temporarily reverted at r19643 but now recovred.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/error.rb')
-rw-r--r-- | lib/test/unit/error.rb | 67 |
1 files changed, 14 insertions, 53 deletions
diff --git a/lib/test/unit/error.rb b/lib/test/unit/error.rb index 43a813f7d..c62fe1af8 100644 --- a/lib/test/unit/error.rb +++ b/lib/test/unit/error.rb @@ -1,56 +1,17 @@ -#-- -# -# Author:: Nathaniel Talbott. -# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved. -# License:: Ruby license. - -require 'test/unit/util/backtracefilter' - -module Test - module Unit - - # Encapsulates an error in a test. Created by - # Test::Unit::TestCase when it rescues an exception thrown - # during the processing of a test. - class Error - include Util::BacktraceFilter - - attr_reader(:test_name, :exception) - - SINGLE_CHARACTER = 'E' - - # Creates a new Error with the given test_name and - # exception. - def initialize(test_name, exception) - @test_name = test_name - @exception = exception - end - - # Returns a single character representation of an error. - def single_character_display - SINGLE_CHARACTER - end - - # Returns the message associated with the error. - def message - "#{@exception.class.name}: #{@exception.message}" - end - - # Returns a brief version of the error description. - def short_display - "#@test_name: #{message.split("\n")[0]}" - end - - # Returns a verbose version of the error description. - def long_display - backtrace = filter_backtrace(@exception.backtrace).join("\n ") - "Error:\n#@test_name:\n#{message}\n #{backtrace}" - end - - # Overridden to return long_display. - def to_s - long_display - end +############################################################ +# This file is imported from a different project. +# DO NOT make modifications in this repo. +# File a patch instead and assign it to Ryan Davis +############################################################ + +require 'test/unit/deprecate' + +# rails currently needs this file and this one method. +module Test::Unit + class Error + def message + self.class.tu_deprecation_warning :message # 2009-06-01 + "you're a loser" end end end |