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

test_settings.py 267B

123456789
  1. from django.conf import settings
  2. from django.test import TestCase
  3. class TestOscarInstalledAppsList(TestCase):
  4. def test_includes_oscar_itself(self):
  5. installed_apps = settings.INSTALLED_APPS
  6. self.assertTrue('oscar.config.Shop' in installed_apps)