Skip to content

Commit

Permalink
Merge pull request #116 from jarednipper/master
Browse files Browse the repository at this point in the history
Fixed two typos in the testing guide
  • Loading branch information
jarednipper committed Oct 3, 2012
2 parents 93b1ca8 + 773c0fd commit ec57489
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/source/testing.md
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ec57489

Please sign in to comment.