aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2014-08-12 19:52:34 +0900
committerAkira Matsuda <ronnie@dio.jp>2014-08-12 19:54:23 +0900
commit9424b48d39fc2f646f34ffb088568a148313c0e8 (patch)
tree4f7ccd5f6a46e5b986895eac0976ad2dfb9e1ee1
parent90745897b991e02e758c635a03062d1bec288300 (diff)
downloadrails-9424b48d39fc2f646f34ffb088568a148313c0e8.tar.gz
rails-9424b48d39fc2f646f34ffb088568a148313c0e8.tar.bz2
rails-9424b48d39fc2f646f34ffb088568a148313c0e8.zip
CHANGELOG entry for TestCase.i_suck_and_my_tests_are_order_dependent! fix
-rw-r--r--activesupport/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 03e8d73ea7..4ee70ebd30 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Fix ActiveSupport::TestCase not to order users' test cases by default.
+ If this change breaks your tests because your tests are order dependent, you need to explicitly call
+ ActiveSupport::TestCase.i_suck_and_my_tests_are_order_dependent! at the top of your tests.
+
+ *Akira Matsuda*
+
* Fix DateTime comparison with DateTime::Infinity object.
*Rafael Mendonça França*