[py3] Fixed test failures introduced in 3afb5916b2.

This commit is contained in:
Florian Apolloner 2012-08-29 00:02:53 +02:00
parent 3afb5916b2
commit 9eafb6592e
1 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,10 @@
# -*- coding: utf-8 -*-
""" """
A series of tests to establish that the command-line managment tools work as A series of tests to establish that the command-line managment tools work as
advertised - especially with regards to the handling of the DJANGO_SETTINGS_MODULE advertised - especially with regards to the handling of the DJANGO_SETTINGS_MODULE
and default settings.py files. and default settings.py files.
""" """
from __future__ import unicode_literals
import os import os
import re import re
@ -10,6 +12,7 @@ import shutil
import socket import socket
import subprocess import subprocess
import sys import sys
import codecs
from django import conf, bin, get_version from django import conf, bin, get_version
from django.conf import settings from django.conf import settings
@ -1584,5 +1587,6 @@ class StartProject(LiveServerTestCase, AdminScriptTestCase):
self.addCleanup(shutil.rmtree, testproject_dir) self.addCleanup(shutil.rmtree, testproject_dir)
self.assertNoOutput(err) self.assertNoOutput(err)
self.assertTrue(os.path.isdir(testproject_dir)) self.assertTrue(os.path.isdir(testproject_dir))
self.assertEqual(open(os.path.join(testproject_dir, 'ticket-18091-non-ascii-template.txt')).read(), path = os.path.join(testproject_dir, 'ticket-18091-non-ascii-template.txt')
'Some non-ASCII text for testing ticket #18091:\n\xc3\xbc\xc3\xa4\xc3\xb6 \xe2\x82\xac\n') self.assertEqual(codecs.open(path, 'r', 'utf-8').read(),
'Some non-ASCII text for testing ticket #18091:\nüäö €\n')