diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-07-20 11:52:28 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-07-20 11:52:28 -0600 |
commit | a2bb266a7f546edfba8e82e75f1f01bb359f7bbd (patch) | |
tree | 9ad150145ec8e9194dcbba3ea084d8ef72a681ee /guides | |
parent | 17b846004d63f94b09b1a86986d9bfb3d64dda2a (diff) | |
parent | 0e2cc9bc0debe893a8d151dfb4a3694b6b93505f (diff) | |
download | rails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.tar.gz rails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.tar.bz2 rails-a2bb266a7f546edfba8e82e75f1f01bb359f7bbd.zip |
Merge pull request #20956 from djpowers/patch-1
Fix minor typo in testing guide [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 d146df3dc6..f40e765242 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1081,7 +1081,7 @@ Finally we can assert that our response was successful, template was rendered, a #### Taking it further -We were able to successfully test a very small workflow for visiting our blog and creating a new article. If we wanted to take this further we could add tests for commenting, removing articles, or editting comments. Integration tests are a great place to experiment with all kinds of use-cases for our applications. +We were able to successfully test a very small workflow for visiting our blog and creating a new article. If we wanted to take this further we could add tests for commenting, removing articles, or editing comments. Integration tests are a great place to experiment with all kinds of use-cases for our applications. Testing Your Mailers -------------------- |