aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJared Nipper <jarednipper@gmail.com>2012-10-01 10:39:12 -0600
committerJared Nipper <jarednipper@gmail.com>2012-10-01 10:39:12 -0600
commit29f59820077308d122272a07e12fa86773ce8261 (patch)
treec5f89421154d99c750c1724aa61b42a6150270e2 /guides/source
parent07a3c2103c0db8f960ea2ba2a8748a2fe2bed206 (diff)
downloadrails-29f59820077308d122272a07e12fa86773ce8261.tar.gz
rails-29f59820077308d122272a07e12fa86773ce8261.tar.bz2
rails-29f59820077308d122272a07e12fa86773ce8261.zip
Fixed typo in command to run unit test
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md2
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