Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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