diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-12 17:00:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-12 17:00:21 +0900 |
commit | fcb84298ce04f10e713c92792c758e9cb142f799 (patch) | |
tree | 11c837137d31a02149f0acff9dad7fb1c5819256 /actionpack | |
parent | 1dfd7d23707872b6330a7f50c022a62618332e0a (diff) | |
parent | d79e102bfaefc0dce843a73a48456831bd7848b7 (diff) | |
download | rails-fcb84298ce04f10e713c92792c758e9cb142f799.tar.gz rails-fcb84298ce04f10e713c92792c758e9cb142f799.tar.bz2 rails-fcb84298ce04f10e713c92792c758e9cb142f799.zip |
Merge pull request #30864 from willnet/enable-link-in-rdoc
[ci skip]Enable link to ActionDispatch::Integration::Session#process in rdoc
Diffstat (limited to 'actionpack')
-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 |