Fix punctuation and keep the tone consistent

This commit is contained in:
Josiah Ivey 2010-05-16 13:58:56 -05:00
parent 5de2e0d416
commit 774f596693
1 changed files with 1 additions and 1 deletions

View File

@ -858,7 +858,7 @@ The goals of testing your mailer classes are to ensure that:
h5. From All Sides
There are two aspects of testing your mailer, the unit tests and the functional tests. In the unit tests, you run the mailer in isolation with tightly controlled inputs and compare the output to a known value (a fixture -- yay! more fixtures!). In the functional tests you don't so much test the minute details produced by the mailer Instead we test that our controllers and models are using the mailer in the right way. You test to prove that the right email was sent at the right time.
There are two aspects of testing your mailer, the unit tests and the functional tests. In the unit tests, you run the mailer in isolation with tightly controlled inputs and compare the output to a known value (a fixture.) In the functional tests you don't so much test the minute details produced by the mailer; instead, we test that our controllers and models are using the mailer in the right way. You test to prove that the right email was sent at the right time.
h4. Unit Testing