mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 16:07:41 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			524 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			524 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| from ...matcher import Matcher
 | |
| from ..util import get_doc
 | |
| 
 | |
| 
 | |
| def test_issue590(en_vocab):
 | |
|     """Test overlapping matches"""
 | |
|     doc = get_doc(en_vocab, ['n', '=', '1', ';', 'a', ':', '5', '%'])
 | |
|     matcher = Matcher(en_vocab)
 | |
|     matcher.add('ab', None, [{'IS_ALPHA': True}, {'ORTH': ':'}, {'LIKE_NUM': True}, {'ORTH': '%'}])
 | |
|     matcher.add('ab', None, [{'IS_ALPHA': True}, {'ORTH': '='}, {'LIKE_NUM': True}])
 | |
|     matches = matcher(doc)
 | |
|     assert len(matches) == 2
 |