summaryrefslogtreecommitdiff
path: root/lib/test/unit/error.rb
blob: c62fe1af8a3587883f9cef63cbeaf8946d92bf13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
############################################################
# 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