File: test_bz2_ncd.py

package info (click to toggle)
textdistance 4.6.3-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: python: 2,728; sh: 4; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# built-in
from math import isclose

# external
import pytest

# project
import textdistance


ALG = textdistance.bz2_ncd


@pytest.mark.parametrize('left, right, expected', [
    ('test', 'test', 0.08),
    ('test', 'nani', 0.16),
])
def test_similarity(left, right, expected):
    actual = ALG(left, right)
    assert isclose(actual, expected)