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