From 324eba99cbfb257de7e2cb377f550a31a84fa673 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 18 Mar 2009 00:59:40 +0000 Subject: Fixed #10526 -- More fixes when specifying installed apps using "foo.*". This adds a case that was missed in r9924: underscore handling. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10078 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/app_loading/parent/__init__.py | 1 - tests/regressiontests/app_loading/parent/app/__init__.py | 1 - tests/regressiontests/app_loading/parent/app1/__init__.py | 1 - tests/regressiontests/app_loading/parent/app_2/__init__.py | 0 tests/regressiontests/app_loading/tests.py | 2 +- 5 files changed, 1 insertion(+), 4 deletions(-) create mode 100644 tests/regressiontests/app_loading/parent/app_2/__init__.py (limited to 'tests') diff --git a/tests/regressiontests/app_loading/parent/__init__.py b/tests/regressiontests/app_loading/parent/__init__.py index 51c842b5ba..e69de29bb2 100644 --- a/tests/regressiontests/app_loading/parent/__init__.py +++ b/tests/regressiontests/app_loading/parent/__init__.py @@ -1 +0,0 @@ -# not empty to make SVN happy diff --git a/tests/regressiontests/app_loading/parent/app/__init__.py b/tests/regressiontests/app_loading/parent/app/__init__.py index 51c842b5ba..e69de29bb2 100644 --- a/tests/regressiontests/app_loading/parent/app/__init__.py +++ b/tests/regressiontests/app_loading/parent/app/__init__.py @@ -1 +0,0 @@ -# not empty to make SVN happy diff --git a/tests/regressiontests/app_loading/parent/app1/__init__.py b/tests/regressiontests/app_loading/parent/app1/__init__.py index 51c842b5ba..e69de29bb2 100644 --- a/tests/regressiontests/app_loading/parent/app1/__init__.py +++ b/tests/regressiontests/app_loading/parent/app1/__init__.py @@ -1 +0,0 @@ -# not empty to make SVN happy diff --git a/tests/regressiontests/app_loading/parent/app_2/__init__.py b/tests/regressiontests/app_loading/parent/app_2/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/regressiontests/app_loading/tests.py b/tests/regressiontests/app_loading/tests.py index 444de10d79..bc958c0d88 100644 --- a/tests/regressiontests/app_loading/tests.py +++ b/tests/regressiontests/app_loading/tests.py @@ -14,7 +14,7 @@ Test the globbing of INSTALLED_APPS. >>> settings = Settings('test_settings') >>> settings.INSTALLED_APPS -['parent.app', 'parent.app1'] +['parent.app', 'parent.app1', 'parent.app_2'] >>> sys.path = old_sys_path -- cgit v1.3