aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/abstract_unit.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-09-04 03:38:13 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-09-04 03:38:13 +0000
commitbe54075956a14c05ec7a7249bed5d5c49034cc8d (patch)
treefff4dfca53a390d976b617cbe967d3ab570dac1f /activerecord/test/abstract_unit.rb
parent29f04510e9529a7f3b1e09a6ec6e8f296e7c0993 (diff)
downloadrails-be54075956a14c05ec7a7249bed5d5c49034cc8d.tar.gz
rails-be54075956a14c05ec7a7249bed5d5c49034cc8d.tar.bz2
rails-be54075956a14c05ec7a7249bed5d5c49034cc8d.zip
set ActiveSupport::Deprecation.debug = true to see backtraces for deprecation callers. off by default. on for Rails tests.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4966 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/abstract_unit.rb')
-rwxr-xr-xactiverecord/test/abstract_unit.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/abstract_unit.rb b/activerecord/test/abstract_unit.rb
index f30e190fc9..5108988a88 100755
--- a/activerecord/test/abstract_unit.rb
+++ b/activerecord/test/abstract_unit.rb
@@ -8,6 +8,10 @@ require 'active_support/binding_of_caller'
require 'active_support/breakpoint'
require 'connection'
+# Show backtraces for deprecated behavior for quicker cleanup.
+ActiveSupport::Deprecation.debug = true
+
+
QUOTED_TYPE = ActiveRecord::Base.connection.quote_column_name('type') unless Object.const_defined?(:QUOTED_TYPE)
class Test::Unit::TestCase #:nodoc: