You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_settings.py 266B

12345678
  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)