mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			277 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			277 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import pytest
 | |
| 
 | |
| 
 | |
| def test_noun_chunks_is_parsed_nb(nb_tokenizer):
 | |
|     """Test that noun_chunks raises Value Error for 'nb' language if Doc is not parsed."""
 | |
|     doc = nb_tokenizer("Smørsausen brukes bl.a. til")
 | |
|     with pytest.raises(ValueError):
 | |
|         list(doc.noun_chunks)
 |