diff options
author | willnet <netwillnet@gmail.com> | 2017-10-12 16:45:21 +0900 |
---|---|---|
committer | willnet <netwillnet@gmail.com> | 2017-10-12 16:47:41 +0900 |
commit | d79e102bfaefc0dce843a73a48456831bd7848b7 (patch) | |
tree | ec7df1188bf72cf8fa051604bf4c5cd2a0970820 /actionpack/lib/action_dispatch | |
parent | 68a2888ef08faf38c0643921a8259beef5fbe630 (diff) | |
download | rails-d79e102bfaefc0dce843a73a48456831bd7848b7.tar.gz rails-d79e102bfaefc0dce843a73a48456831bd7848b7.tar.bz2 rails-d79e102bfaefc0dce843a73a48456831bd7848b7.zip |
[ci skip]Enable link to ActionDispatch::Integration::Session#process in rdoc
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/integration.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index ae1f368e8b..8caa71199e 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -12,38 +12,38 @@ require_relative "request_encoder" module ActionDispatch module Integration #:nodoc: module RequestHelpers - # Performs a GET request with the given parameters. See +#process+ for more - # details. + # Performs a GET request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def get(path, **args) process(:get, path, **args) end - # Performs a POST request with the given parameters. See +#process+ for more - # details. + # Performs a POST request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def post(path, **args) process(:post, path, **args) end - # Performs a PATCH request with the given parameters. See +#process+ for more - # details. + # Performs a PATCH request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def patch(path, **args) process(:patch, path, **args) end - # Performs a PUT request with the given parameters. See +#process+ for more - # details. + # Performs a PUT request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def put(path, **args) process(:put, path, **args) end - # Performs a DELETE request with the given parameters. See +#process+ for - # more details. + # Performs a DELETE request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def delete(path, **args) process(:delete, path, **args) end - # Performs a HEAD request with the given parameters. See +#process+ for more - # details. + # Performs a HEAD request with the given parameters. See ActionDispatch::Integration::Session#process + # for more details. def head(path, *args) process(:head, path, *args) end |