Changeset 8135
- Timestamp:
- 07/29/08 01:05:15 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/templates/loaders.py
r7750 r8135 15 15 import imp 16 16 import StringIO 17 import os.path 17 18 18 19 from django.template import TemplateDoesNotExist … … 58 59 self.empty_egg = create_egg("egg_empty", {}) 59 60 self.egg_1 = create_egg("egg_1", { 60 'templates/y.html': StringIO.StringIO("y"),61 'templates/x.txt': StringIO.StringIO("x"),61 os.path.normcase('templates/y.html') : StringIO.StringIO("y"), 62 os.path.normcase('templates/x.txt') : StringIO.StringIO("x"), 62 63 }) 63 64 self._old_installed_apps = settings.INSTALLED_APPS
