diff options
author | Jon Evans <joncodes+github@gmail.com> | 2018-06-01 23:25:47 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 23:25:47 -0600 |
commit | 61725674fc50615ccc0921dc8281b5a6881566eb (patch) | |
tree | 8af39c452490cafde368bf97b9f67414387a4332 /guides | |
parent | 32aa7cdd8f031dc756fdde3501efca7ff72bf576 (diff) | |
download | rails-61725674fc50615ccc0921dc8281b5a6881566eb.tar.gz rails-61725674fc50615ccc0921dc8281b5a6881566eb.tar.bz2 rails-61725674fc50615ccc0921dc8281b5a6881566eb.zip |
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 |