mirror of
https://github.com/django/django.git
synced 2025-11-01 04:17:59 +00:00
A few test optimizations; using native unittest where no Django-specific TestCase features are required.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
67df1a5002
commit
ec3ba39fdb
13 changed files with 31 additions and 30 deletions
|
|
@ -1,10 +1,11 @@
|
|||
import os
|
||||
from unittest import TestCase
|
||||
from datetime import datetime, date
|
||||
import os
|
||||
import unittest
|
||||
|
||||
from django.utils.dateformat import format
|
||||
from django.utils.tzinfo import FixedOffset, LocalTimezone
|
||||
|
||||
class DateFormatTests(TestCase):
|
||||
class DateFormatTests(unittest.TestCase):
|
||||
def test_date(self):
|
||||
d = date(2009, 5, 16)
|
||||
self.assertEquals(date.fromtimestamp(int(format(d, 'U'))), d)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue