@@ -261,7 +261,7 @@ def with_collection_check_boxes(object, attribute, collection, value_method, tex
261261 end
262262 end
263263 # COLLECTION CHECK BOX
264- test "collection check box accepts a collection and generate a serie of checkboxes for value method" do
264+ test "collection check box accepts a collection and generate a series of checkboxes for value method" do
265265 collection = [ Tag . new ( 1 , 'Tag 1' ) , Tag . new ( 2 , 'Tag 2' ) ]
266266 with_collection_check_boxes @user , :tag_ids , collection , :id , :name
267267
@@ -276,7 +276,7 @@ def with_collection_check_boxes(object, attribute, collection, value_method, tex
276276 assert_select "form input[type=hidden][name='user[tag_ids][]'][value='']" , count : 1
277277 end
278278
279- test "collection check box accepts a collection and generate a serie of checkboxes with labels for label method" do
279+ test "collection check box accepts a collection and generate a series of checkboxes with labels for label method" do
280280 collection = [ Tag . new ( 1 , 'Tag 1' ) , Tag . new ( 2 , 'Tag 2' ) ]
281281 with_collection_check_boxes @user , :tag_ids , collection , :id , :name
282282
@@ -569,7 +569,7 @@ def with_collection_check_boxes(object, attribute, collection, value_method, tex
569569 end
570570 end
571571
572- test "fields for with a hash like model yeilds an instance of FormBuilder" do
572+ test "fields for with a hash like model yields an instance of FormBuilder" do
573573 with_concat_form_for ( :user ) do |f |
574574 f . simple_fields_for ( :author , HashBackedAuthor . new ) do |author |
575575 assert author . instance_of? ( SimpleForm ::FormBuilder )
0 commit comments