Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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()