mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
71884d0942
Co-authored-by: explosion-bot <explosion-bot@users.noreply.github.com>
9 lines
236 B
Python
9 lines
236 B
Python
import pytest
|
|
|
|
|
|
def test_la_tokenizer_handles_exc_in_text(la_tokenizer):
|
|
text = "scio te omnia facturum, ut nobiscum quam primum sis"
|
|
tokens = la_tokenizer(text)
|
|
assert len(tokens) == 11
|
|
assert tokens[6].text == "nobis"
|