aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorPrem Sichanugrist and Chris Toomey <prem+chris@thoughtbot.com>2013-01-25 13:44:36 -0500
committerPrem Sichanugrist <s@sikac.hu>2013-03-09 16:03:54 -0500
commitb4df25366a3c8f133f8329bc35f1d53926704b5a (patch)
tree5a904251263f996bc8fd3eeed6fb9b4d3902692e /railties/CHANGELOG.md
parent15970efb2acc7767f2f20c5d649e53ace2e2ddb5 (diff)
downloadrails-b4df25366a3c8f133f8329bc35f1d53926704b5a.tar.gz
rails-b4df25366a3c8f133f8329bc35f1d53926704b5a.tar.bz2
rails-b4df25366a3c8f133f8329bc35f1d53926704b5a.zip
Add `rails test` command to run the test suite
To run the whole test suite: $ rails test To run the test file(s): $ rails test test/unit/foo_test.rb [test/unit/bar_test.rb ...] To run the test suite $ rails test [models,helpers,units,controllers,mailers,...] For more information, see `rails test --help`. This command will eventually replacing `rake test:*`, and `rake test` command will actually invoking `rails test` instead.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 420ed476b2..6bf9b22a2d 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -19,6 +19,27 @@
*Terence Lee*
+* Add `rails test` command to run the test suite
+
+ To run the whole test suite:
+
+ $ rails test
+
+ To run the test file(s):
+
+ $ rails test test/unit/foo_test.rb [test/unit/bar_test.rb ...]
+
+ To run the test suite
+
+ $ rails test [models,helpers,units,controllers,mailers,...]
+
+ For more information, see `rails test --help`.
+
+ This command will eventually replacing `rake test:*`, and `rake test`
+ command will actually invoking `rails test` instead.
+
+ *Prem Sichanugrist and Chris Toomey*
+
* Add notice message for destroy action in scaffold generator.
*Rahul P. Chaudhari*