mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	* Auto-format tests with black * Add flake8 config * Tidy up and remove unused imports * Fix redefinitions of test functions * Replace orths_and_spaces with words and spaces * Fix compatibility with pytest 4.0 * xfail test for now Test was previously overwritten by following test due to naming conflict, so failure wasn't reported * Unfail passing test * Only use fixture via arguments Fixes pytest 4.0 compatibility
		
			
				
	
	
		
			38 lines
		
	
	
		
			837 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			837 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import pytest
 | 
						|
from spacy.vocab import Vocab
 | 
						|
from spacy.tokens import Doc
 | 
						|
from spacy.lemmatizer import Lemmatizer
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture
 | 
						|
def lemmatizer():
 | 
						|
    return Lemmatizer(lookup={"dogs": "dog", "boxen": "box", "mice": "mouse"})
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture
 | 
						|
def vocab(lemmatizer):
 | 
						|
    return Vocab(lemmatizer=lemmatizer)
 | 
						|
 | 
						|
 | 
						|
def test_empty_doc(vocab):
 | 
						|
    doc = Doc(vocab)
 | 
						|
    assert len(doc) == 0
 | 
						|
 | 
						|
 | 
						|
def test_single_word(vocab):
 | 
						|
    doc = Doc(vocab, words=["a"])
 | 
						|
    assert doc.text == "a "
 | 
						|
    doc = Doc(vocab, words=["a"], spaces=[False])
 | 
						|
    assert doc.text == "a"
 | 
						|
 | 
						|
 | 
						|
def test_lookup_lemmatization(vocab):
 | 
						|
    doc = Doc(vocab, words=["dogs", "dogses"])
 | 
						|
    assert doc[0].text == "dogs"
 | 
						|
    assert doc[0].lemma_ == "dog"
 | 
						|
    assert doc[1].text == "dogses"
 | 
						|
    assert doc[1].lemma_ == "dogses"
 |