您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12345678 |
- from django.conf import settings
- from django.test import TestCase
-
-
- class TestOscarInstalledAppsList(TestCase):
- def test_includes_oscar_itself(self):
- installed_apps = settings.INSTALLED_APPS
- self.assertTrue("oscar.config.Shop" in installed_apps)
|