aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorDominic Cleal <dominic@cleal.org>2017-01-25 15:58:11 +0000
committerDominic Cleal <dominic@cleal.org>2017-02-04 13:54:52 +0100
commit1c8a4cdf63134f34d638703a956c2706d8e3789f (patch)
tree9b97fd307605aeeea935851e43731cc55225c04c /railties/CHANGELOG.md
parentd833e9346839a3e8fca6098e3a5e456354873f8f (diff)
downloadrails-1c8a4cdf63134f34d638703a956c2706d8e3789f.tar.gz
rails-1c8a4cdf63134f34d638703a956c2706d8e3789f.tar.bz2
rails-1c8a4cdf63134f34d638703a956c2706d8e3789f.zip
Collect all file patterns when running multiple rake test tasks
Replaces the rake_patterns instance variable with simple require, as `autorun` will run tests from all eagerly required test files. Fixes #27801
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 0b2fb3e9c8..7aee513a99 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Fix running multiple tests in one `rake` command
+
+ e.g. `bin/rake test:models test:controllers`
+
+ *Dominic Cleal*
+
* Add option to configure Ruby's warning behaviour to test runner.
*Yuji Yaginuma*