[Source]
# File lib/form_test_helper.rb, line 3 3: def method_missing(method, *args) 4: if tag.respond_to?(method) 5: tag.send(method, *args) 6: else 7: super 8: end 9: end
[Validate]