diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index 1d27e96..46ffd0e 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -22,6 +22,7 @@ def test_cut(): with pytest.raises(ValueError): cut(3, sep=',', ignore_missing_column=False)("a,b,c") == "" + def test_author_similarity_score(): assert author_similarity_score("", "") == 0.0 assert author_similarity_score("Gregor Samsa", "G. Samsa") == 0.42857142857142855 |