Code / tests /__init__.py
Artificial-superintelligence's picture
Create tests/__init__.py
7d9ae2b verified
raw
history blame contribute delete
182 Bytes
# tests/test_sample.py
import unittest
class SampleTest(unittest.TestCase):
def test_example(self):
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()