Since Rails 5 you've been able to render templates outside of your controller actions. Now you can pass in arbitrary keys when performing that kind of rendering.
In your ActionDispatch::IntegrationTest controller tests you can use the `get` etc. request shorthands which would just pipe through to a private `process` method.
Now that method is public so you can better see the documentation on it.