mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
 | 
						|
@pytest.mark.parametrize('text1,text2', [("cat", "dog")])
 | 
						|
def test_issue361(en_vocab, text1, text2):
 | 
						|
    """Test Issue #361: Equality of lexemes"""
 | 
						|
    assert en_vocab[text1] == en_vocab[text1]
 | 
						|
    assert en_vocab[text1] != en_vocab[text2]
 |