diff --git a/apps/python/tests.py b/apps/python/tests.py new file mode 100644 index 0000000..70dd9f4 --- /dev/null +++ b/apps/python/tests.py @@ -0,0 +1,12 @@ +import unittest + +def add_six(i): + return i + 6 + +class TestAddSix(unittest.TestCase): + + def test_add_six(self): + self.assertEqual(add_six(2), 8) + +if __name__ == '__main__': + unittest.main()