diff options
author | Zachary Scott <e@zzak.io> | 2014-12-20 14:42:52 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-20 14:42:52 -0800 |
commit | d9710212c2715d80bce7210b0d69dee61f931013 (patch) | |
tree | 9d62e73ed57cfff31d44e27bd4e0d5460338ce48 /guides | |
parent | 32626dec3f9d39c2d93152fb856f0b0e939bc732 (diff) | |
download | rails-d9710212c2715d80bce7210b0d69dee61f931013.tar.gz rails-d9710212c2715d80bce7210b0d69dee61f931013.tar.bz2 rails-d9710212c2715d80bce7210b0d69dee61f931013.zip |
Describe the mailer and helpers directories which are generated by `rails new`.
[ci skip]
Diffstat (limited to 'guides')
-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 ed04ccd100..4bd0624f27 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. +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. Fixtures are a way of organizing test data; they reside in the `fixtures` folder. |