nlp-project / tests /test_app.py
kohlin's picture
Add CI/CD, deploy, and tests files for feature branch
067bde8
raw
history blame
160 Bytes
import unittest
class TestApp(unittest.TestCase):
def test_sample(self):
self.assertEqual(1 + 1, 2)
if __name__ == "__main__":
unittest.main()