7 lines
127 B
Python
7 lines
127 B
Python
from django.test import TestCase
|
|
|
|
|
|
class IntegrationTestCase(TestCase):
|
|
def test_runs(self):
|
|
self.assertTrue(True)
|