mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			576 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			576 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# encoding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
from ...fr import French
 | 
						|
from ...nl import Dutch
 | 
						|
 | 
						|
def test_load_french():
 | 
						|
    nlp = French()
 | 
						|
    doc = nlp(u'Parlez-vous français?')
 | 
						|
    assert doc[0].text == u'Parlez'
 | 
						|
    assert doc[1].text == u'-'
 | 
						|
    assert doc[2].text == u'vous'
 | 
						|
    assert doc[3].text == u'français'
 | 
						|
    assert doc[4].text == u'?'
 | 
						|
 | 
						|
def test_load_dutch():
 | 
						|
    nlp = Dutch()
 | 
						|
    doc = nlp(u'Is dit Nederlands?')
 | 
						|
    assert doc[0].text == u'Is'
 | 
						|
    assert doc[1].text == u'dit'
 | 
						|
    assert doc[2].text == u'Nederlands'
 | 
						|
    assert doc[3].text == u'?' |