Skip to content

Commit 1050aac

Browse files
Create tests.py
1 parent 95a3a52 commit 1050aac

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/tests.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)