aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index a083b3f981..7345c7f522 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -537,11 +537,11 @@ NOTE: Functional tests do not verify whether the specified request type is accep
### Testing XHR (AJAX) requests
-`xhr` accepts method (listed in the section above), action name and parameters:
+Enable set `xhr: true` option as an argument to `get/post/patch/put/delete` method:
```ruby
test "ajax request responds with no layout" do
- xhr :get, :show, params: { id: articles(:first).id }
+ get :show, params: { id: articles(:first).id }, xhr: true
assert_template :index
assert_template layout: nil