Keep trailing semicolons in formatted tag values
This commit is contained in:
parent
9d717d4541
commit
07436bc1b0
2 changed files with 7 additions and 1 deletions
|
@ -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'Amigo", html
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue