diff options
author | Zachary Scott <e@zzak.io> | 2014-12-29 15:01:41 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-29 15:01:41 -0800 |
commit | df9ceb868c57e4d0165080bb5302df4ec5894234 (patch) | |
tree | cd34989e364630c0846c4ebfdbd2ae7abca567b8 /guides/source | |
parent | 97cac32841deed50a9caf6bb3b01039223f77071 (diff) | |
download | rails-df9ceb868c57e4d0165080bb5302df4ec5894234.tar.gz rails-df9ceb868c57e4d0165080bb5302df4ec5894234.tar.bz2 rails-df9ceb868c57e4d0165080bb5302df4ec5894234.zip |
These are technically objects [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/testing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 8043434d6e..832ccb6961 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -553,8 +553,8 @@ assigns["something"] assigns(:something) You also have access to three instance variables in your functional tests: * `@controller` - The controller processing the request -* `@request` - The request -* `@response` - The response +* `@request` - The request object +* `@response` - The response object ### Setting Headers and CGI variables |