aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorSandip Ransing <sandip@funonrails.com>2014-11-14 11:51:06 +0530
committerSandip Ransing <sandip@funonrails.com>2014-11-14 11:51:06 +0530
commit5e3c5cef857cb2b7c17e5df792b9a7897fb2a47a (patch)
tree52108d1ce58f3034e277b3862a7460fcc3f368d7 /guides/source
parentaeb917d475dfccb8b5f3b5a57f62df5358ad3ef0 (diff)
downloadrails-5e3c5cef857cb2b7c17e5df792b9a7897fb2a47a.tar.gz
rails-5e3c5cef857cb2b7c17e5df792b9a7897fb2a47a.tar.bz2
rails-5e3c5cef857cb2b7c17e5df792b9a7897fb2a47a.zip
[ci skip] Remove deprecated testing tasks
This has changed recently and so rake test:all and rake test:all:db are deprecated.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 9f881f1f47..b51a422583 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -792,8 +792,7 @@ when you initiate a Rails project.
| Tasks | Description |
| ----------------------- | ----------- |
-| `rake test` | Runs all tests in the test folder by default |
-| `rake test:all` | Runs tests quickly by merging all types and not resetting the db |
+| `rake test` | Runs all tests in the `test` folder 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` |
@@ -802,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:db` | Runs all tests and resets the db |
-| `rake test:all:db` | Runs tests quickly by merging all types and resets the db |
+| `rake test:db` | Runs all tests in the `test` folder and resets the db |
Brief Note About `Minitest`