From 56e777eba3687bd56b954de4b3dfa44775481b14 Mon Sep 17 00:00:00 2001 From: Preston Timmons Date: Sat, 6 Apr 2013 14:04:06 -0500 Subject: [PATCH] Modified view_tests for unittest2 discovery. --- tests/view_tests/tests/__init__.py | 10 +++++----- tests/view_tests/tests/{debug.py => test_debug.py} | 0 .../view_tests/tests/{defaults.py => test_defaults.py} | 0 tests/view_tests/tests/{i18n.py => test_i18n.py} | 0 .../tests/{shortcuts.py => test_shortcuts.py} | 0 .../view_tests/tests/{specials.py => test_specials.py} | 0 tests/view_tests/tests/{static.py => test_static.py} | 0 7 files changed, 5 insertions(+), 5 deletions(-) rename tests/view_tests/tests/{debug.py => test_debug.py} (100%) rename tests/view_tests/tests/{defaults.py => test_defaults.py} (100%) rename tests/view_tests/tests/{i18n.py => test_i18n.py} (100%) rename tests/view_tests/tests/{shortcuts.py => test_shortcuts.py} (100%) rename tests/view_tests/tests/{specials.py => test_specials.py} (100%) rename tests/view_tests/tests/{static.py => test_static.py} (100%) diff --git a/tests/view_tests/tests/__init__.py b/tests/view_tests/tests/__init__.py index 17f3f4562d..06b50c14b2 100644 --- a/tests/view_tests/tests/__init__.py +++ b/tests/view_tests/tests/__init__.py @@ -1,10 +1,10 @@ from __future__ import absolute_import -from .debug import (DebugViewTests, ExceptionReporterTests, +from .test_debug import (DebugViewTests, ExceptionReporterTests, ExceptionReporterTests, PlainTextReportTests, ExceptionReporterFilterTests, AjaxResponseExceptionReporterFilter) from .defaults import DefaultsTests -from .i18n import JsI18NTests, I18NTests, JsI18NTestsMultiPackage, JavascriptI18nTests -from .shortcuts import ShortcutTests -from .specials import URLHandling -from .static import StaticHelperTest, StaticUtilsTests, StaticTests +from .test_i18n import JsI18NTests, I18NTests, JsI18NTestsMultiPackage, JavascriptI18nTests +from .test_shortcuts import ShortcutTests +from .test_specials import URLHandling +from .test_static import StaticHelperTest, StaticUtilsTests, StaticTests diff --git a/tests/view_tests/tests/debug.py b/tests/view_tests/tests/test_debug.py similarity index 100% rename from tests/view_tests/tests/debug.py rename to tests/view_tests/tests/test_debug.py diff --git a/tests/view_tests/tests/defaults.py b/tests/view_tests/tests/test_defaults.py similarity index 100% rename from tests/view_tests/tests/defaults.py rename to tests/view_tests/tests/test_defaults.py diff --git a/tests/view_tests/tests/i18n.py b/tests/view_tests/tests/test_i18n.py similarity index 100% rename from tests/view_tests/tests/i18n.py rename to tests/view_tests/tests/test_i18n.py diff --git a/tests/view_tests/tests/shortcuts.py b/tests/view_tests/tests/test_shortcuts.py similarity index 100% rename from tests/view_tests/tests/shortcuts.py rename to tests/view_tests/tests/test_shortcuts.py diff --git a/tests/view_tests/tests/specials.py b/tests/view_tests/tests/test_specials.py similarity index 100% rename from tests/view_tests/tests/specials.py rename to tests/view_tests/tests/test_specials.py diff --git a/tests/view_tests/tests/static.py b/tests/view_tests/tests/test_static.py similarity index 100% rename from tests/view_tests/tests/static.py rename to tests/view_tests/tests/test_static.py