instance method
method_missing
Ruby on Rails 7.2.3
Since v6.0.6 PrivateSignature
method_missing(name, ...)
No documentation comment.
Parameters
-
namereq -
...req
Source
# File actionpack/lib/action_dispatch/system_test_case.rb, line 191
def method_missing(name, ...)
if url_helpers.respond_to?(name)
url_helpers.public_send(name, ...)
else
super
end
end
Defined in actionpack/lib/action_dispatch/system_test_case.rb line 191
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::SystemTestCase