diff options
author | Sakshi Jain <sakshijain1107@gmail.com> | 2018-09-22 17:15:29 +0530 |
---|---|---|
committer | Sakshi Jain <sakshijain1107@gmail.com> | 2018-09-23 21:27:44 +0530 |
commit | 0fe2bb816f60f4daf5d0d24468af94be971d0eaf (patch) | |
tree | f944173b17105aaf2ba7539e05c734f85d3a43b9 /actionview/test/template | |
parent | d3b952184d8bdb6154aff1f8bc3eda58046026f6 (diff) | |
download | rails-0fe2bb816f60f4daf5d0d24468af94be971d0eaf.tar.gz rails-0fe2bb816f60f4daf5d0d24468af94be971d0eaf.tar.bz2 rails-0fe2bb816f60f4daf5d0d24468af94be971d0eaf.zip |
Remove private def
Diffstat (limited to 'actionview/test/template')
-rw-r--r-- | actionview/test/template/form_helper/form_with_test.rb | 14 |
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 c30176349c..85bd72e524 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| |