diff options
author | Jon Atack <jon@atack.com> | 2014-12-21 00:36:01 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2014-12-21 00:36:01 +0100 |
commit | 74ddf0051f9cc7ee7ac73def97392f5c327c3647 (patch) | |
tree | fc803a6be8d75c0fbc1dda207676c1070cd1c8b5 | |
parent | 4ad9d685815f27fe54aed2019755abf2ec8c2cf4 (diff) | |
download | rails-74ddf0051f9cc7ee7ac73def97392f5c327c3647.tar.gz rails-74ddf0051f9cc7ee7ac73def97392f5c327c3647.tar.bz2 rails-74ddf0051f9cc7ee7ac73def97392f5c327c3647.zip |
Follow-up to d9710212 [skip ci]
-rw-r--r-- | guides/source/testing.md | 2 |
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. |