mirror of https://github.com/explosion/spaCy.git
Remove extraneous grc test file (#8768)
This commit is contained in:
parent
ffaead8fe0
commit
d48c01a6f7
|
@ -1,23 +0,0 @@
|
|||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"text,match",
|
||||
[
|
||||
("ι", True),
|
||||
("α", True),
|
||||
("ϟα", True),
|
||||
("ἑκατόν", True),
|
||||
("ἐνακόσια", True),
|
||||
("δισχίλια", True),
|
||||
("μύρια", True),
|
||||
("εἷς", True),
|
||||
("λόγος", False),
|
||||
(",", False),
|
||||
("λβ", True),
|
||||
],
|
||||
)
|
||||
def test_lex_attrs_like_number(grc_tokenizer, text, match):
|
||||
tokens = grc_tokenizer(text)
|
||||
assert len(tokens) == 1
|
||||
assert tokens[0].like_num == match
|
Loading…
Reference in New Issue