Skip to content

Commit

Permalink
tests: add failing test for unicode case fold.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jul 10, 2024
1 parent 685d8a6 commit d921f62
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/tests/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,14 @@ fn reference_links() {
);
}

#[test]
fn reference_links_casefold() {
html(
concat!("[ẞ]\n", "\n", "[SS]: /url \n",),
"<p><a href=\"/url\">ẞ</a></p>\n",
);
}

#[test]
fn safety() {
html(
Expand Down

0 comments on commit d921f62

Please sign in to comment.