From 29f59820077308d122272a07e12fa86773ce8261 Mon Sep 17 00:00:00 2001 From: Jared Nipper Date: Mon, 1 Oct 2012 10:39:12 -0600 Subject: Fixed typo in command to run unit test --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source/testing.md') 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 -- cgit v1.2.3 From 773c0fd32d4725f6b2cafa946a29f5086c8c9854 Mon Sep 17 00:00:00 2001 From: Jared Nipper Date: Mon, 1 Oct 2012 10:40:03 -0600 Subject: Fixed typo in command to run unit test --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source/testing.md') 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 -- cgit v1.2.3