Convert the remainder of the relative imports in the tests to be absolute imports.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2011-10-13 21:34:56 +00:00
parent f830166167
commit 8c0eefd066
144 changed files with 580 additions and 265 deletions

View file

@ -2,21 +2,24 @@
Tests for django.utils.
"""
from dateformat import *
from feedgenerator import *
from module_loading import *
from termcolors import *
from html import *
from http import *
from checksums import *
from text import *
from simplelazyobject import *
from decorators import *
from functional import *
from timesince import *
from datastructures import *
from tzinfo import *
from datetime_safe import *
from baseconv import *
from jslex import *
from ipv6 import *
from __future__ import absolute_import
from .dateformat import DateFormatTests
from .feedgenerator import FeedgeneratorTest
from .module_loading import DefaultLoader, EggLoader, CustomLoader
from .termcolors import TermColorTests
from .html import TestUtilsHtml
from .http import TestUtilsHttp
from .checksums import TestUtilsChecksums
from .text import TestUtilsText
from .simplelazyobject import TestUtilsSimpleLazyObject
from .decorators import DecoratorFromMiddlewareTests
from .functional import FunctionalTestCase
from .timesince import TimesinceTests
from .datastructures import (MultiValueDictTests, SortedDictTests,
DictWrapperTests, ImmutableListTests, DotExpandedDictTests, MergeDictTests)
from .tzinfo import TzinfoTests
from .datetime_safe import DatetimeTests
from .baseconv import TestBaseConv
from .jslex import JsTokensTest, JsToCForGettextTest
from .ipv6 import TestUtilsIPv6