aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2010-12-05 09:46:52 -0800
committerVijay Dev <vijaydev.cse@gmail.com>2010-12-05 09:46:52 -0800
commit638b409eb4c75b9187c6cedc9f71e2e38ec84731 (patch)
tree7f30236e1b688d8a494bb5b679823197c4e0371a /railties/guides/source
parent48386d245bc169d3a36e5f305927bd968b108fea (diff)
downloadrails-638b409eb4c75b9187c6cedc9f71e2e38ec84731.tar.gz
rails-638b409eb4c75b9187c6cedc9f71e2e38ec84731.tar.bz2
rails-638b409eb4c75b9187c6cedc9f71e2e38ec84731.zip
fixed typo in test method name
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/testing.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile
index c292a5d83b..c9109a0ddf 100644
--- a/railties/guides/source/testing.textile
+++ b/railties/guides/source/testing.textile
@@ -183,7 +183,7 @@ class PostTest < ActiveSupport::TestCase
The +PostTest+ class defines a _test case_ because it inherits from +ActiveSupport::TestCase+. +PostTest+ thus has all the methods available from +ActiveSupport::TestCase+. You'll see those methods a little later in this guide.
<ruby>
-def test_truth
+def test_the_truth
</ruby>
Any method defined within a +Test::Unit+ test case that begins with +test+ (case sensitive) is simply called a test. So, +test_password+, +test_valid_password+ and +testValidPassword+ all are legal test names and are run automatically when the test case is run.
@@ -256,7 +256,7 @@ This will run all the test methods from the test case. Note that +test_helper.rb
You can also run a particular test method from the test case by using the +-n+ switch with the +test method name+.
<shell>
-$ ruby -Itest test/unit/post_test.rb -n test_truth
+$ ruby -Itest test/unit/post_test.rb -n test_the_truth
Loaded suite unit/post_test
Started