diff options
author | Jared Nipper <jarednipper@gmail.com> | 2012-10-01 10:39:12 -0600 |
---|---|---|
committer | Jared Nipper <jarednipper@gmail.com> | 2012-10-01 10:39:12 -0600 |
commit | 29f59820077308d122272a07e12fa86773ce8261 (patch) | |
tree | c5f89421154d99c750c1724aa61b42a6150270e2 /guides | |
parent | 07a3c2103c0db8f960ea2ba2a8748a2fe2bed206 (diff) | |
download | rails-29f59820077308d122272a07e12fa86773ce8261.tar.gz rails-29f59820077308d122272a07e12fa86773ce8261.tar.bz2 rails-29f59820077308d122272a07e12fa86773ce8261.zip |
Fixed typo in command to run unit test
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 2680525928..ea3303222f 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -225,7 +225,7 @@ TIP: You can see all these rake tasks and their descriptions by running `rake -- Running a test is as simple as invoking the file containing the test cases through Ruby: ```bash -$ ruby -Itest test/unit/post_test.rb +$ ruby -I test test/unit/post_test.rb Loaded suite unit/post_test Started |