aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Roes <jroes@jroes.net>2013-04-19 23:49:40 -0300
committerJonathan Roes <jroes@jroes.net>2013-04-19 23:49:40 -0300
commit8a70b2dbbb4b65e14948b39e91cf0d341d4679de (patch)
treeddae6b5f369523476a891ecf3df4b90f22ed9c1a
parent385edec24d45e35191aba474d2a740f6f38313c0 (diff)
downloadrails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.tar.gz
rails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.tar.bz2
rails-8a70b2dbbb4b65e14948b39e91cf0d341d4679de.zip
There are now 6 request methods including PATCH
-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 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.