mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from ...en import English
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture
 | 
						|
def en_tokenizer():
 | 
						|
    return English.Defaults.create_tokenizer()
 | 
						|
 | 
						|
 | 
						|
def test_issue351(en_tokenizer):
 | 
						|
    doc = en_tokenizer("   This is a cat.")
 | 
						|
    assert doc[0].idx == 0
 | 
						|
    assert len(doc[0]) == 3
 | 
						|
    assert doc[1].idx == 3
 |