You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rails 6 removes the hidden input field named "utf8", which breaks all the tests. See rails/rails#32125.
A note about possible solutions: form_with changed the output of helpers compared to form_for, and testing for both quickly became very complicated. DRY solutions to supporting different expected strings quickly become hard to understand. Non-DRY solutions require maintenance of a lot of boilerplate code. We didn't find a good balance in the case of form_with.
Rails 6 removes the hidden input field named "utf8", which breaks all the tests. See rails/rails#32125.
A note about possible solutions:
form_with
changed the output of helpers compared toform_for
, and testing for both quickly became very complicated. DRY solutions to supporting different expected strings quickly become hard to understand. Non-DRY solutions require maintenance of a lot of boilerplate code. We didn't find a good balance in the case ofform_with
.Part of issue #503.
The text was updated successfully, but these errors were encountered: