diff options
author | Jared Nipper <jarednipper@gmail.com> | 2012-10-01 10:40:03 -0600 |
---|---|---|
committer | Jared Nipper <jarednipper@gmail.com> | 2012-10-01 10:40:03 -0600 |
commit | 773c0fd32d4725f6b2cafa946a29f5086c8c9854 (patch) | |
tree | 8e01e71ec1139edc890475909d7f61b69a76722b | |
parent | 29f59820077308d122272a07e12fa86773ce8261 (diff) | |
download | rails-773c0fd32d4725f6b2cafa946a29f5086c8c9854.tar.gz rails-773c0fd32d4725f6b2cafa946a29f5086c8c9854.tar.bz2 rails-773c0fd32d4725f6b2cafa946a29f5086c8c9854.zip |
Fixed typo in command to run unit test
-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 ea3303222f..81e93d1701 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -240,7 +240,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`. ```bash -$ ruby -Itest test/unit/post_test.rb -n test_the_truth +$ ruby -I test test/unit/post_test.rb -n test_the_truth Loaded suite unit/post_test Started |