diff options
author | Jonathan Roes <jroes@jroes.net> | 2013-04-19 23:49:40 -0300 |
---|---|---|
committer | Jonathan Roes <jroes@jroes.net> | 2013-04-19 23:49:40 -0300 |
commit | 8a70b2dbbb4b65e14948b39e91cf0d341d4679de (patch) | |
tree | ddae6b5f369523476a891ecf3df4b90f22ed9c1a /guides | |
parent | 385edec24d45e35191aba474d2a740f6f38313c0 (diff) | |
download | rails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.tar.gz rails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.tar.bz2 rails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.zip |
There are now 6 request methods including PATCH
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 cab13751f0..62c642195a 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -476,7 +476,7 @@ NOTE: Functional tests do not verify whether the specified request type should b ### The Four Hashes of the Apocalypse -After a request has been made by using one of the 5 methods (`get`, `post`, etc.) and processed, you will have 4 Hash objects ready for use: +After a request has been made using one of the 6 methods (`get`, `post`, etc.) and processed, you will have 4 Hash objects ready for use: * `assigns` - Any objects that are stored as instance variables in actions for use in views. * `cookies` - Any cookies that are set. |