aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2014-08-12 19:30:05 +0900
committerAkira Matsuda <ronnie@dio.jp>2014-08-12 19:37:04 +0900
commit6ffb29d24e05abbd9ffe3ea974140d6c70221807 (patch)
treeea40496435d86e57bf70dc3fc424daccced39a3a /activesupport
parentc27883c501284b85db39926ce42671e257a5f6d1 (diff)
downloadrails-6ffb29d24e05abbd9ffe3ea974140d6c70221807.tar.gz
rails-6ffb29d24e05abbd9ffe3ea974140d6c70221807.tar.bz2
rails-6ffb29d24e05abbd9ffe3ea974140d6c70221807.zip
users_dont_suck_but_only_we_suck_and_only_our_tests_are_order_dependent!
Calling ActiveSupport::TestCase.i_suck_and_my_tests_are_order_dependent! in AS::TestCase makes everyone's tests order dependent, which should never be done by the framework.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/test_case.rb4
-rw-r--r--activesupport/test/abstract_unit.rb5
2 files changed, 5 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb
index a6a878140c..a456f731e1 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -22,10 +22,6 @@ module ActiveSupport
yield if $tags[tag]
end
- # FIXME: we have tests that depend on run order, we should fix that and
- # remove this method call.
- self.i_suck_and_my_tests_are_order_dependent!
-
include ActiveSupport::Testing::TaggedLogging
include ActiveSupport::Testing::SetupAndTeardown
include ActiveSupport::Testing::Assertions
diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb
index 7ffcae6007..e29a248aa0 100644
--- a/activesupport/test/abstract_unit.rb
+++ b/activesupport/test/abstract_unit.rb
@@ -38,3 +38,8 @@ def jruby_skip(message = '')
end
require 'mocha/setup' # FIXME: stop using mocha
+
+# FIXME: we have tests that depend on run order, we should fix that and
+# remove this method call.
+require 'active_support/test_case'
+ActiveSupport::TestCase.i_suck_and_my_tests_are_order_dependent!