setup.py test replacement OBS-URL: https://build.opensuse.org/request/show/895694 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-editdistance-s?expand=0&rev=1
10 lines
184 B
Python
10 lines
184 B
Python
import editdistance_s
|
|
|
|
|
|
def test_same():
|
|
assert editdistance_s.distance('hello', 'hello') == 0
|
|
|
|
|
|
def test_unicode():
|
|
assert editdistance_s.distance('hell🙃', 'hell☃') == 1
|