Keep trailing semicolons in formatted tag values

This commit is contained in:
Anton Khorev 2023-12-14 18:08:06 +03:00
parent 9d717d4541
commit 07436bc1b0
2 changed files with 7 additions and 1 deletions

View file

@ -22,6 +22,12 @@ class BrowseTagsHelperTest < ActionView::TestCase
html = format_value("unknown", "unknown")
assert_dom_equal "unknown", html
html = format_value("unknown", "abc;def")
assert_dom_equal "abc;def", html
html = format_value("unknown", "foo;")
assert_dom_equal "foo;", html
html = format_value("addr:street", "Rue de l'Amigo")
assert_dom_equal "Rue de l&#39;Amigo", html