1
0
mirror of https://github.com/django/django.git synced 2025-10-17 18:59:14 +00:00
Malcolm Tredinnick 7dcf651bc5 [1.0.X] Fixed #9323 -- Allow glob loading in INSTALLED_APPS to handle digits in names.
Patch from carljm.

Backport of r9994 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-08 09:41:37 +00:00

19 lines
313 B
Python

"""
Test the globbing of INSTALLED_APPS.
>>> import os, sys
>>> old_sys_path = sys.path
>>> sys.path.append(os.path.dirname(os.path.abspath(__file__)))
>>> from django.conf import Settings
>>> s = Settings('test_settings')
>>> s.INSTALLED_APPS
['parent.app', 'parent.app1']
>>> sys.path = old_sys_path
"""