1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-12 07:15:48 +03:00
spaCy/spacy/tests/test_errors.py

18 lines
319 B
Python
Raw Normal View History

from inspect import isclass
import pytest
from spacy.errors import add_codes
@add_codes
class Errors(object):
E001 = "error description"
def test_add_codes():
assert Errors.E001 == "[E001] error description"
with pytest.raises(AttributeError):
Errors.E002
assert isclass(Errors.__class__)