選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

test_promotion.py 297B

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