mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			311 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			311 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from inspect import isclass
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
from spacy.errors import add_codes
 | 
						|
 | 
						|
 | 
						|
@add_codes
 | 
						|
class Errors:
 | 
						|
    E001 = "error description"
 | 
						|
 | 
						|
 | 
						|
def test_add_codes():
 | 
						|
    assert Errors.E001 == "[E001] error description"
 | 
						|
    with pytest.raises(AttributeError):
 | 
						|
        Errors.E002
 | 
						|
    assert isclass(Errors.__class__)
 |