Skip to content

Commit

Permalink
Removed tests of the globbing feature that was removed at r17158. Refs
Browse files Browse the repository at this point in the history
…#16247.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17159 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
aaugustin committed Nov 27, 2011
1 parent 7872fc0 commit 9d6321c
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 21 deletions.
Empty file.
Empty file.
Empty file.
Empty file.
3 changes: 0 additions & 3 deletions tests/regressiontests/app_loading/test_settings.py

This file was deleted.

18 changes: 0 additions & 18 deletions tests/regressiontests/app_loading/tests.py
Expand Up @@ -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):
Expand Down

0 comments on commit 9d6321c

Please sign in to comment.