aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-11-12 13:42:17 +0300
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-11-12 13:42:17 +0300
commit2a31ea5545dbbeeafaaabb622a3053e361018898 (patch)
treef075c0d15efda8edd0ab95eb2fb456862b893407 /guides/source/testing.md
parent46f172798e56ba5383ba5305e2cce5aad02e8e30 (diff)
parent3b12abba3c4fa0dbd6e8c92bd68fa433847d142c (diff)
downloadrails-2a31ea5545dbbeeafaaabb622a3053e361018898.tar.gz
rails-2a31ea5545dbbeeafaaabb622a3053e361018898.tar.bz2
rails-2a31ea5545dbbeeafaaabb622a3053e361018898.zip
Merge pull request #17348 from DavidGeukers/rake_test_all
simplify rake test vs rake test:all
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index ea24e8b462..ce815156a7 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -792,7 +792,7 @@ when you initiate a Rails project.
| Tasks | Description |
| ----------------------- | ----------- |
-| `rake test` | Runs all unit, functional and integration tests. You can also simply run `rake` as Rails will run all the tests by default |
+| `rake test` | Runs all tests in the test folder. You can also simply run `rake` as Rails will run all the tests by default |
| `rake test:controllers` | Runs all the controller tests from `test/controllers` |
| `rake test:functionals` | Runs all the functional tests from `test/controllers`, `test/mailers`, and `test/functional` |
| `rake test:helpers` | Runs all the helper tests from `test/helpers` |
@@ -801,8 +801,7 @@ when you initiate a Rails project.
| `rake test:mailers` | Runs all the mailer tests from `test/mailers` |
| `rake test:models` | Runs all the model tests from `test/models` |
| `rake test:units` | Runs all the unit tests from `test/models`, `test/helpers`, and `test/unit` |
-| `rake test:all` | Runs all tests quickly by merging all types and not resetting db |
-| `rake test:all:db` | Runs all tests quickly by merging all types and resetting db |
+| `rake test:db` | Runs all tests and resets the db |
Brief Note About `Minitest`