Corrected the tests for DjangoTestRunner so they pass under Postgres.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
79d6e402e3
commit
15f42cc92a
|
@ -4,15 +4,15 @@ Tests for django test runner
|
|||
import StringIO
|
||||
import unittest
|
||||
import django
|
||||
from django.test import TestCase, TransactionTestCase, simple
|
||||
from django.test import simple
|
||||
|
||||
class DjangoTestRunnerTests(TestCase):
|
||||
class DjangoTestRunnerTests(unittest.TestCase):
|
||||
|
||||
def test_failfast(self):
|
||||
class MockTestOne(TransactionTestCase):
|
||||
class MockTestOne(unittest.TestCase):
|
||||
def runTest(self):
|
||||
assert False
|
||||
class MockTestTwo(TransactionTestCase):
|
||||
class MockTestTwo(unittest.TestCase):
|
||||
def runTest(self):
|
||||
assert False
|
||||
|
||||
|
|
Loading…
Reference in New Issue