Spaces:
Configuration error
Configuration error
import unittest | |
class TestApp(unittest.TestCase): | |
def test_sample(self): | |
self.assertEqual(1 + 1, 2) | |
if __name__ == "__main__": | |
unittest.main() |