aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRizwan Reza <rizwanreza@gmail.com>2010-05-17 02:39:10 +0430
committerRizwan Reza <rizwanreza@gmail.com>2010-05-17 02:39:10 +0430
commite1c773006969abea3c0619fbdc7e32c121b6085f (patch)
tree9d3b38d27a91a2f6b76c758fcccd1911f5e89834 /railties
parent4679b72cba371eee30cb77d9077a0bb8727a0654 (diff)
parent774f596693a78c9a2f5cc92049a74ec817abffa1 (diff)
downloadrails-e1c773006969abea3c0619fbdc7e32c121b6085f.tar.gz
rails-e1c773006969abea3c0619fbdc7e32c121b6085f.tar.bz2
rails-e1c773006969abea3c0619fbdc7e32c121b6085f.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/testing.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile
index a4d5189376..91c92d0a65 100644
--- a/railties/guides/source/testing.textile
+++ b/railties/guides/source/testing.textile
@@ -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