mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
10 lines
296 B
Python
10 lines
296 B
Python
import pytest
|
|
|
|
|
|
def test_noun_chunks_is_parsed_fa(fa_tokenizer):
|
|
"""Test that noun_chunks raises Value Error for 'fa' language if Doc is not parsed."""
|
|
|
|
doc = fa_tokenizer("این یک جمله نمونه می باشد.")
|
|
with pytest.raises(ValueError):
|
|
list(doc.noun_chunks)
|