aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/form_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/template/form_helper_test.rb')
-rw-r--r--actionview/test/template/form_helper_test.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/actionview/test/template/form_helper_test.rb b/actionview/test/template/form_helper_test.rb
index ed58818602..e82905175a 100644
--- a/actionview/test/template/form_helper_test.rb
+++ b/actionview/test/template/form_helper_test.rb
@@ -16,7 +16,8 @@ class FormHelperTest < ActionView::TestCase
setup do
# Create "label" locale for testing I18n label helpers
- I18n.backend.store_translations "label", activemodel: {
+ I18n.backend.store_translations "label",
+ activemodel: {
attributes: {
post: {
cost: "Total cost"
@@ -47,7 +48,8 @@ class FormHelperTest < ActionView::TestCase
}
# Create "submit" locale for testing I18n submit helpers
- I18n.backend.store_translations "submit", helpers: {
+ I18n.backend.store_translations "submit",
+ helpers: {
submit: {
create: "Create %{model}",
update: "Confirm %{model} changes",
@@ -58,7 +60,8 @@ class FormHelperTest < ActionView::TestCase
}
}
- I18n.backend.store_translations "placeholder", activemodel: {
+ I18n.backend.store_translations "placeholder",
+ activemodel: {
attributes: {
post: {
cost: "Total cost"
@@ -2257,7 +2260,6 @@ class FormHelperTest < ActionView::TestCase
assert_dom_equal expected, output_buffer
end
-
def test_nested_fields_for_with_nested_collections
form_for(@post, as: "post[]") do |f|
concat f.text_field(:title)
@@ -3437,7 +3439,7 @@ class FormHelperTest < ActionView::TestCase
end
end
- form_for(@post, builder: builder_class) { }
+ form_for(@post, builder: builder_class) {}
assert_equal 1, initialization_count, "form builder instantiated more than once"
end