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