aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-20 16:26:08 -0800
committerZachary Scott <e@zzak.io>2014-12-20 16:26:08 -0800
commita504cbee78370f944c0dbdb3beebfd118037eb5d (patch)
treefc803a6be8d75c0fbc1dda207676c1070cd1c8b5 /guides/source
parent4ad9d685815f27fe54aed2019755abf2ec8c2cf4 (diff)
parent74ddf0051f9cc7ee7ac73def97392f5c327c3647 (diff)
downloadrails-a504cbee78370f944c0dbdb3beebfd118037eb5d.tar.gz
rails-a504cbee78370f944c0dbdb3beebfd118037eb5d.tar.bz2
rails-a504cbee78370f944c0dbdb3beebfd118037eb5d.zip
Merge pull request #18114 from jonatack/patch-8
Follow-up to d971021 [skip ci]
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 c8a87c57e8..b279463ea8 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -43,7 +43,7 @@ controllers/ helpers/ mailers/ test_helper.rb
fixtures/ integration/ models/
```
-The `models` directory is meant to hold tests for your models, the `controllers` directory is meant to hold tests for your controllers and the `integration` directory is meant to hold tests that involve any number of controllers interacting. There is also a directory for testing your mailers, and helper methods which you are used within the view layer.
+The `models` directory is meant to hold tests for your models, the `controllers` directory is meant to hold tests for your controllers and the `integration` directory is meant to hold tests that involve any number of controllers interacting. There is also a directory for testing your mailers and one for testing view helpers.
Fixtures are a way of organizing test data; they reside in the `fixtures` directory.