diff options
author | David Geukers <david.geukers@jadedpixel.com> | 2014-10-21 15:13:09 -0400 |
---|---|---|
committer | David Geukers <david.geukers@jadedpixel.com> | 2014-11-10 20:33:31 -0500 |
commit | 3b12abba3c4fa0dbd6e8c92bd68fa433847d142c (patch) | |
tree | effdf1947ddcca914a28c26b6900821c383ecf94 /guides/source | |
parent | 40e904df37253301c23f8abf87135d751bddfa9c (diff) | |
download | rails-3b12abba3c4fa0dbd6e8c92bd68fa433847d142c.tar.gz rails-3b12abba3c4fa0dbd6e8c92bd68fa433847d142c.tar.bz2 rails-3b12abba3c4fa0dbd6e8c92bd68fa433847d142c.zip |
Simplify rake test vs rake test:all
Renames `rake test:all` to `rake test` by changing old `rake test:run` to previous version of `rake test:all`. Removes old definition of `rake test`. Also renames `rake test:all:db` to `rake test:db` and deprecates `rake test:all` & `rake test:all:db`
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index b784098fbb..4f10245612 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` |