Commit
7d9ae2b
1 Parent(s): ad8639b

Create tests/__init__.py

Browse files
Files changed (1) hide show
  1. 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()