mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			628 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			628 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
import pytest
 | 
						|
 | 
						|
from spacy.en import English
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture
 | 
						|
def EN():
 | 
						|
    return English()
 | 
						|
 | 
						|
 | 
						|
def test_neq(EN):
 | 
						|
    addr = EN.vocab['Hello']
 | 
						|
    assert EN.vocab['bye'].orth != addr.orth
 | 
						|
 | 
						|
 | 
						|
def test_eq(EN):
 | 
						|
    addr = EN.vocab['Hello']
 | 
						|
    assert EN.vocab['Hello'].orth == addr.orth
 | 
						|
 | 
						|
 | 
						|
def test_case_neq(EN):
 | 
						|
    addr = EN.vocab['Hello']
 | 
						|
    assert EN.vocab['hello'].orth != addr.orth
 | 
						|
 | 
						|
 | 
						|
def test_punct_neq(EN):
 | 
						|
    addr = EN.vocab['Hello']
 | 
						|
    assert EN.vocab['Hello,'].orth != addr.orth
 | 
						|
 | 
						|
 | 
						|
def test_shape_attr(EN):
 | 
						|
    example = EN.vocab['example']
 | 
						|
    assert example.orth != example.shape
 |