Author: aaugustin Date: 2011-11-27 13:17:33 -0800 (Sun, 27 Nov 2011) New Revision: 17159
Removed: django/trunk/tests/regressiontests/app_loading/parent/ django/trunk/tests/regressiontests/app_loading/test_settings.py Modified: django/trunk/tests/regressiontests/app_loading/tests.py Log: Removed tests of the globbing feature that was removed at r17158. Refs #16247. Deleted: django/trunk/tests/regressiontests/app_loading/test_settings.py =================================================================== --- django/trunk/tests/regressiontests/app_loading/test_settings.py 2011-11-27 20:13:37 UTC (rev 17158) +++ django/trunk/tests/regressiontests/app_loading/test_settings.py 2011-11-27 21:17:33 UTC (rev 17159) @@ -1,3 +0,0 @@ -INSTALLED_APPS = ( - 'parent.*', -) Modified: django/trunk/tests/regressiontests/app_loading/tests.py =================================================================== --- django/trunk/tests/regressiontests/app_loading/tests.py 2011-11-27 20:13:37 UTC (rev 17158) +++ django/trunk/tests/regressiontests/app_loading/tests.py 2011-11-27 21:17:33 UTC (rev 17159) @@ -9,24 +9,6 @@ from django.db.models.loading import cache, load_app, get_model, get_models from django.utils.unittest import TestCase - -class InstalledAppsGlobbingTest(TestCase): - def setUp(self): - self.OLD_SYS_PATH = sys.path[:] - sys.path.append(os.path.dirname(os.path.abspath(__file__))) - self.OLD_TZ = os.environ.get("TZ") - - def test_globbing(self): - settings = Settings('test_settings') - self.assertEqual(settings.INSTALLED_APPS, ['parent.app', 'parent.app1', 'parent.app_2']) - - def tearDown(self): - sys.path = self.OLD_SYS_PATH - if hasattr(time, "tzset") and self.OLD_TZ: - os.environ["TZ"] = self.OLD_TZ - time.tzset() - - class EggLoadingTest(TestCase): def setUp(self): -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.