add project python-tutorials folder

This commit is contained in:
YuCheng Hu
2020-09-30 14:31:20 -04:00
parent e4ff5dde68
commit ac800f9b5d
21 changed files with 857 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
from .context import sample
import unittest
class BasicTestSuite(unittest.TestCase):
"""Basic test cases."""
def test_absolute_truth_and_meaning(self):
assert True
if __name__ == '__main__':
unittest.main()