您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

promotion_tests.py 298B

1234567891011
  1. from django.test import TestCase
  2. from oscar.apps.promotions import models
  3. class PromotionTest(TestCase):
  4. def test_default_template_name(self):
  5. promotion = models.Image.objects.create(name="dummy banner")
  6. self.assertEqual('promotions/image.html', promotion.template_name())