aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-11-15 12:50:51 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-11-15 12:50:51 +0000
commit9339db70c65219c2c575771e5c6a0fd58ee69316 (patch)
tree64e68386105be77cb00b5ca2b9e11b33642d9a87 /actionpack
parentc9e0002d36429a382ab4f96059a3b6eb51605d88 (diff)
downloadrails-9339db70c65219c2c575771e5c6a0fd58ee69316.tar.gz
rails-9339db70c65219c2c575771e5c6a0fd58ee69316.tar.bz2
rails-9339db70c65219c2c575771e5c6a0fd58ee69316.zip
Remove dead abort_tests method.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5526 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/active_record_unit.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/test/active_record_unit.rb b/actionpack/test/active_record_unit.rb
index bcca8822d8..fd29126354 100644
--- a/actionpack/test/active_record_unit.rb
+++ b/actionpack/test/active_record_unit.rb
@@ -102,15 +102,6 @@ class ActiveRecordTestCase < Test::Unit::TestCase
# Default so Test::Unit::TestCase doesn't complain
def test_truth
end
-
- private
- # If things go wrong, we don't want to run our test cases. We'll just define them to test nothing.
- def abort_tests
- $stderr.puts 'No Active Record connection, aborting tests.'
- self.class.public_instance_methods.grep(/^test./).each do |method|
- self.class.class_eval { define_method(method.to_sym){} }
- end
- end
end
ActiveRecordTestConnector.setup