aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJared Nipper <jarednipper@gmail.com>2012-10-03 08:18:27 -0700
committerJared Nipper <jarednipper@gmail.com>2012-10-03 08:18:27 -0700
commitec57489160a0eb7a50cd456e265ad08a228a5f30 (patch)
tree6fa70ec80741cdc3bfc7a6ca0cac0ad63230dc97 /guides/source
parent93b1ca8bd34993f8958219f13c195f5acf8e55f6 (diff)
parent773c0fd32d4725f6b2cafa946a29f5086c8c9854 (diff)
downloadrails-ec57489160a0eb7a50cd456e265ad08a228a5f30.tar.gz
rails-ec57489160a0eb7a50cd456e265ad08a228a5f30.tar.bz2
rails-ec57489160a0eb7a50cd456e265ad08a228a5f30.zip
Merge pull request #116 from jarednipper/master
Fixed two typos in the testing guide
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 2680525928..81e93d1701 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
@@ -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