aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJens Dahl Møllerhøj <mollerhoj3@gmail.com>2013-11-05 23:12:51 +0100
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-11-09 18:49:50 -0200
commit18010385fd3ef77316adfdd7a19f9d941690e110 (patch)
tree8fc35fd3ada4186636914475e9add8004c85e195 /guides/source
parent2a8739dc6d445df14014e94f7ba3f59c9492f5be (diff)
downloadrails-18010385fd3ef77316adfdd7a19f9d941690e110.tar.gz
rails-18010385fd3ef77316adfdd7a19f9d941690e110.tar.bz2
rails-18010385fd3ef77316adfdd7a19f9d941690e110.zip
Fixed minor typo
instead of 'rake test' as shortcut, use 'rake'. Closes #12780 [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index cf01650b2a..2fd0ed209d 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -798,7 +798,7 @@ You don't need to set up and run your tests by hand on a test-by-test basis. Rai
| Tasks | Description |
| ----------------------- | ----------- |
-| `rake test` | Runs all unit, functional and integration tests. You can also simply run `rake test` as Rails will run all the tests by default|
+| `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: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`|