aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unxhtmlify_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/unxhtmlify_test.go b/unxhtmlify_test.go
index 9c980a8..9ac238d 100644
--- a/unxhtmlify_test.go
+++ b/unxhtmlify_test.go
@@ -9,6 +9,9 @@ func TestUnxhtmlifyLine(t *testing.T) {
{ "<br />", "<br>" },
{ "<span>Bender / Flexo</span>", "<span>Bender / Flexo</span>" },
{ "<img src=\"farnsworth-paradox.jpg\" alt=\"Parabox\"/>", "<img src=\"farnsworth-paradox.jpg\" alt=\"Parabox\">" },
+ { "some-class-name\" />", "some-class-name\">" },
+ { "/>", ">" },
+ { " />", " >" },
}
for _, c := range tests {