aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorGuo Xiang Tan <tgx_world@hotmail.com>2014-11-14 16:36:26 +0800
committerGuo Xiang Tan <tgx_world@hotmail.com>2014-11-14 16:52:51 +0800
commitf88a4d39000991f0b2b138c1396612a03a518a32 (patch)
treeda0241751da996d4efa09e1a27d80aac7cb5f752 /guides
parent5865fba626578a4e60418a4aea2b494b130d61e0 (diff)
downloadrails-f88a4d39000991f0b2b138c1396612a03a518a32.tar.gz
rails-f88a4d39000991f0b2b138c1396612a03a518a32.tar.bz2
rails-f88a4d39000991f0b2b138c1396612a03a518a32.zip
[CI SKIP] Corrections to testing guide.
Partially revert https://github.com/rails/rails/commit/c31e638a37946a120f6dbf207127d36beea5ab85.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index b51a422583..d2b8ce8ed2 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -787,12 +787,12 @@ Rake Tasks for Running your Tests
You don't need to set up and run your tests by hand on a test-by-test basis.
Rails comes with a number of built-in rake tasks to help in testing.
-Below table lists available commands which comes along with `Rakefile` tasks
+Below table lists available commands which come along in the default `Rakefile`
when you initiate a Rails project.
| Tasks | Description |
| ----------------------- | ----------- |
-| `rake test` | Runs all tests in the `test` folder 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` |