Skip to content

Commit

Permalink
Add test for replace_unicode function in
Browse files Browse the repository at this point in the history
check_biblio module
  • Loading branch information
wiso committed Nov 15, 2023
1 parent fd78f78 commit 26f727c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_check_biblio.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import check_biblio


def test_replace_unicode():
assert check_biblio.replace_unicode("hello") == "hello"
assert check_biblio.replace_unicode("H−>yy") == "H->yy"
assert check_biblio.replace_unicode("H−−>yy") == "H-->yy"

0 comments on commit 26f727c

Please sign in to comment.