mirror of
https://github.com/django/django.git
synced 2024-11-29 14:46:18 +01:00
aef019de61
Thanks thepapermen for the report and Carl Meyer for the review.
20 lines
325 B
Python
20 lines
325 B
Python
from unittest import TestCase
|
|
|
|
from django.test import TestCase as DjangoTestCase
|
|
|
|
|
|
class TestVanillaUnittest(TestCase):
|
|
|
|
def test_sample(self):
|
|
self.assertEqual(1, 1)
|
|
|
|
|
|
class TestDjangoTestCase(DjangoTestCase):
|
|
|
|
def test_sample(self):
|
|
self.assertEqual(1, 1)
|
|
|
|
|
|
class EmptyTestCase(TestCase):
|
|
pass
|