Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

test_models.py 282B

12345678910
  1. import pytest
  2. from django.core import exceptions
  3. from oscar.apps.customer import models
  4. def test_communication_event_type_code_forbids_hyphens():
  5. ctype = models.CommunicationEventType(code="A-B")
  6. with pytest.raises(exceptions.ValidationError):
  7. ctype.full_clean()