We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a3a52 commit 1050aacCopy full SHA for 1050aac
tests/tests.py
@@ -0,0 +1,6 @@
1
+import unittest
2
+class TestCaseExample(unittest.TestCase):
3
+ def first_test(self):
4
+ self.assertEqual(1 + 1, 2)
5
+if __name__ == '__main__':
6
+ unittest.main()
0 commit comments