1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

[1.2.X] A few test optimizations; using native unittest where no Django-specific TestCase features are required.

Backport of r13935 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13943 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee
2010-09-28 08:29:30 +00:00
parent 5277425ae4
commit efa27fc86c
13 changed files with 31 additions and 30 deletions

View File

@@ -1,8 +1,8 @@
from django.test import TestCase
import unittest
from django.utils import text
class TestUtilsText(TestCase):
class TestUtilsText(unittest.TestCase):
def test_truncate_words(self):
self.assertEqual(u'The quick brown fox jumped over the lazy dog.',
text.truncate_words(u'The quick brown fox jumped over the lazy dog.', 10))