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