6 lines
127 B
Python
6 lines
127 B
Python
from tests import BaseTestCase
|
|
|
|
|
|
class ExampleTestCase(BaseTestCase):
|
|
def test_thing(self):
|
|
self.assertEqual(1, 1)
|