summaryrefslogtreecommitdiff
path: root/tests/admin_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_scripts')
-rw-r--r--tests/admin_scripts/tests.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index 1376ea9203..5ac24db6ea 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -613,7 +613,7 @@ class DjangoAdminSettingsDirectory(AdminScriptTestCase):
self.addCleanup(shutil.rmtree, app_path)
self.assertNoOutput(err)
self.assertTrue(os.path.exists(app_path))
- unicode_literals_import = "from __future__ import unicode_literals\n"
+ unicode_literals_import = "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\n\n"
with open(os.path.join(app_path, 'apps.py'), 'r') as f:
content = f.read()
self.assertIn("class SettingsTestConfig(AppConfig)", content)
@@ -624,6 +624,15 @@ class DjangoAdminSettingsDirectory(AdminScriptTestCase):
with open(os.path.join(app_path, 'models.py'), 'r') as fp:
content = fp.read()
self.assertIn(unicode_literals_import, content)
+ with open(os.path.join(app_path, 'views.py'), 'r') as fp:
+ content = fp.read()
+ self.assertIn(unicode_literals_import, content)
+ with open(os.path.join(app_path, 'admin.py'), 'r') as fp:
+ content = fp.read()
+ self.assertIn(unicode_literals_import, content)
+ with open(os.path.join(app_path, 'tests.py'), 'r') as fp:
+ content = fp.read()
+ self.assertIn(unicode_literals_import, content)
def test_setup_environ_custom_template(self):
"directory: startapp creates the correct directory with a custom template"