6 lines
131 B
Python
6 lines
131 B
Python
from django.test import TestCase
|
|
|
|
|
|
class MyTestCase(TestCase):
|
|
def test_something(self):
|
|
self.assertEqual(True, False)
|