Artificial-superintelligence
commited on
Create tests/__init__.py
Browse files- tests/__init__.py +9 -0
tests/__init__.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# tests/test_sample.py
|
2 |
+
import unittest
|
3 |
+
|
4 |
+
class SampleTest(unittest.TestCase):
|
5 |
+
def test_example(self):
|
6 |
+
self.assertTrue(True)
|
7 |
+
|
8 |
+
if __name__ == '__main__':
|
9 |
+
unittest.main()
|