diff options
author | Jon Atack <jon@atack.com> | 2014-12-21 16:06:46 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2014-12-21 16:06:46 +0100 |
commit | 2f1cf8101ff49e71819dfc19d823da6d80ace7a2 (patch) | |
tree | 49b5f7df8265831a8f63827fb009055d1ff72e16 /guides | |
parent | 651bba1bfe1c7d2946b8f560bb12c45b0440a12a (diff) | |
download | rails-2f1cf8101ff49e71819dfc19d823da6d80ace7a2.tar.gz rails-2f1cf8101ff49e71819dfc19d823da6d80ace7a2.tar.bz2 rails-2f1cf8101ff49e71819dfc19d823da6d80ace7a2.zip |
Testing guide grammar fix
[skip ci]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 8a8befc0ae..b22da70031 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -126,7 +126,7 @@ TIP: In order to remove existing data from the database, Rails tries to disable #### Fixtures are Active Record objects -Fixtures are instances of Active Record. As mentioned in point #3 above, you can access the object directly because it is automatically available as a method who's scope is local of the test case. For example: +Fixtures are instances of Active Record. As mentioned in point #3 above, you can access the object directly because it is automatically available as a method whose scope is local of the test case. For example: ```ruby # this will return the User object for the fixture named david |