mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			326 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			326 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| from __future__ import unicode_literals
 | |
| from ...lang.lex_attrs import is_stop
 | |
| from ...lang.en.stop_words import STOP_WORDS
 | |
| 
 | |
| import pytest
 | |
| 
 | |
| 
 | |
| @pytest.mark.parametrize('word', ['the'])
 | |
| def test_lex_attrs_stop_words_case_sensitivity(word):
 | |
|     assert is_stop(word, STOP_WORDS) == is_stop(word.upper(), STOP_WORDS)
 |