8 lines
107 B
Python
8 lines
107 B
Python
import unittest
|
|
|
|
|
|
class fooTest(unittest.TestCase):
|
|
|
|
def test_foo(self):
|
|
self.assertTrue(True)
|