diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2018-06-04 14:19:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-04 14:19:18 -0400 |
commit | f67b4a5b3f6136fe7af0d6e79daa593b8ab3d159 (patch) | |
tree | 8fb2f0fe06f47292f9c31483931304cb13220137 /guides | |
parent | 187ace068bba7c63c46ee869ac6cc35716f1b7ab (diff) | |
parent | 61725674fc50615ccc0921dc8281b5a6881566eb (diff) | |
download | rails-f67b4a5b3f6136fe7af0d6e79daa593b8ab3d159.tar.gz rails-f67b4a5b3f6136fe7af0d6e79daa593b8ab3d159.tar.bz2 rails-f67b4a5b3f6136fe7af0d6e79daa593b8ab3d159.zip |
Merge pull request #33047 from artfuldodger/patch-3
Fix testing guide typo
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 0a6d2d6555..7958236902 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1476,7 +1476,7 @@ Testing Helpers --------------- A helper is just a simple module where you can define methods which are -available into your views. +available in your views. In order to test helpers, all you need to do is check that the output of the helper method matches what you'd expect. Tests related to the helpers are |