mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-06 14:40:34 +03:00
10 lines
228 B
Python
10 lines
228 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"text,words", [("A'B C", ["A", "'", "B", "C"]), ("A-B", ["A-B"])]
|
|
)
|
|
def test_gold_misaligned(en_tokenizer, text, words):
|
|
doc = en_tokenizer(text)
|
|
GoldParse(doc, words=words)
|