method
method_missing
v8.1.1 -
Show latest stable
- Class:
ActionDispatch::SystemTestCase
method_missing(name, ...)private
No documentation available.
# 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