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