Skip to content

Commit

Permalink
Add another failing test based on the expectation from fuzzy 1.1. Ref #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason R. Coombs committed Jul 2, 2018
1 parent b78cf2f commit 19a6ea6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_fuzzy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ def test_soundex_result():
assert res == 'F521'


@pytest.mark.xfail(reason="issue #14")
def test_soundex_Test():
assert fuzzy.Soundex(8)('Test') == 'T2300000'


def test_DMetaphone():
m = fuzzy.DMetaphone()
assert m("mayer") == [b'MR', None]

0 comments on commit 19a6ea6

Please sign in to comment.