You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
236 B
9 lines
236 B
|
4 weeks ago
|
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"
|