django/tests/test_discovery_sample/tests_sample.py

16 lines
283 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)