instance method
method_missing
Ruby on Rails 6.0.6
Since v6.0.6Signature
method_missing(method, *args, &block)
No documentation comment.
Parameters
-
methodreq -
argsrest -
blockblock
Source
# File actionpack/lib/action_dispatch/system_test_case.rb, line 173
def method_missing(method, *args, &block)
if @proxy_route.respond_to?(method)
@proxy_route.send(method, *args, &block)
else
super
end
end
Defined in actionpack/lib/action_dispatch/system_test_case.rb line 173
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::SystemTestCase