aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-05-01 15:29:02 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-05-01 16:10:08 +0530
commit8476932aacbc45ce38b007cca0bb3f12e741f709 (patch)
treec5fefd36ccc20a5ea9b933c9308c99e63c0be392 /guides/source/testing.md
parent727d0af28cbc3a917afdea8631beac5db3f4ee49 (diff)
downloadrails-8476932aacbc45ce38b007cca0bb3f12e741f709.tar.gz
rails-8476932aacbc45ce38b007cca0bb3f12e741f709.tar.bz2
rails-8476932aacbc45ce38b007cca0bb3f12e741f709.zip
copy edits [ci skip]
Diffstat (limited to 'guides/source/testing.md')
-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 b198f5632f..b02d0b663c 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -372,7 +372,7 @@ Here's an extract of the assertions you can use with `minitest`, the default tes
| `assert_raises( exception1, exception2, ... ) { block }` | Ensures that the given block raises one of the given exceptions.|
| `assert_nothing_raised( exception1, exception2, ... ) { block }` | Ensures that the given block doesn't raise one of the given exceptions.|
| `assert_instance_of( class, obj, [msg] )` | Ensures that `obj` is an instance of `class`.|
-| `refute_instance_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class`.|
+| `refute_instance_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class`.|
| `assert_kind_of( class, obj, [msg] )` | Ensures that `obj` is or descends from `class`.|
| `refute_kind_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class` and is not descending from it.|
| `assert_respond_to( obj, symbol, [msg] )` | Ensures that `obj` responds to `symbol`.|