mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-28 19:06:33 +03:00
11 lines
301 B
Python
11 lines
301 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)
|