aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-09-23 19:39:15 +0200
committerGitHub <noreply@github.com>2018-09-23 19:39:15 +0200
commit22dc2b3db894cb709c132456d787166839455a8e (patch)
tree860d7050325891b01735d9f69daf6db7fef3208c /actionview/test/template
parent58f80d6be8d8ed4c7a11dfef5de0b8874807bfdc (diff)
parent0fe2bb816f60f4daf5d0d24468af94be971d0eaf (diff)
downloadrails-22dc2b3db894cb709c132456d787166839455a8e.tar.gz
rails-22dc2b3db894cb709c132456d787166839455a8e.tar.bz2
rails-22dc2b3db894cb709c132456d787166839455a8e.zip
Merge pull request #33949 from sjain1107/no-private-def
Remove private def
Diffstat (limited to 'actionview/test/template')
-rw-r--r--actionview/test/template/form_helper/form_with_test.rb14
1 files changed, 8 insertions, 6 deletions
diff --git a/actionview/test/template/form_helper/form_with_test.rb b/actionview/test/template/form_helper/form_with_test.rb
index 876e799d93..70325c27bd 100644
--- a/actionview/test/template/form_helper/form_with_test.rb
+++ b/actionview/test/template/form_helper/form_with_test.rb
@@ -450,13 +450,15 @@ class FormWithActsLikeFormForTest < FormWithTest
def test_form_with_doesnt_call_private_or_protected_properties_on_form_object_skipping_value
obj = Class.new do
- private def private_property
- "That would be great."
- end
+ private
+ def private_property
+ "That would be great."
+ end
- protected def protected_property
- "I believe you have my stapler."
- end
+ protected
+ def protected_property
+ "I believe you have my stapler."
+ end
end.new
form_with(model: obj, scope: "other_name", url: "/", id: "edit-other-name") do |f|