blob: d538771b0f532583bed8e5e152a55760d5811e2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|