aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2016-06-22 05:43:24 +0800
committerPrathamesh Sonpatki <csonpatki@gmail.com>2016-06-22 05:43:24 +0800
commit59f56c3a6915e9c7bf38640f16c33aead467a2bf (patch)
treedc8e193594db52ee237ae4714df33f69828bd5f2 /guides/source
parent9d441579247b28979539d117b730548afa12fefb (diff)
downloadrails-59f56c3a6915e9c7bf38640f16c33aead467a2bf.tar.gz
rails-59f56c3a6915e9c7bf38640f16c33aead467a2bf.tar.bz2
rails-59f56c3a6915e9c7bf38640f16c33aead467a2bf.zip
update_url is not `get` most of the times [ci skip]
Diffstat (limited to 'guides/source')
-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 924a8a09f5..d4a826cee5 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -722,7 +722,7 @@ get :show, params: { id: 12 }, headers: { "HTTP_REFERER" => "http://example.com/
Another example: Calling the `:update` action, passing an `id` of 12 as the `params` as an Ajax request.
```ruby
-get update_url, params: { id: 12 }, xhr: true
+patch update_url, params: { id: 12 }, xhr: true
```
NOTE: If you try running `test_should_create_article` test from `articles_controller_test.rb` it will fail on account of the newly added model level validation and rightly so.