summaryrefslogtreecommitdiff
path: root/tests.py
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2024-11-11 15:52:22 +0100
committeryuzu-eva <stevenhu@web.de>2024-11-11 15:52:22 +0100
commit696199a0227cfccb2247978b1ba8c1b03f1ae26d (patch)
tree493c3f65fdb65634c1577529bcfbf76356d9ec4f /tests.py
initial commit
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests.py b/tests.py
new file mode 100755
index 0000000..f233699
--- /dev/null
+++ b/tests.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+
+import unittest
+
+from maze import Maze
+
+class Tests(unittest.TestCase):
+ def test_maze_create_cells(self):
+ num_cols = 12
+ num_rows = 10
+ m1 = Maze(0, 0, num_rows, num_cols, 10, 10)
+ self.assertEqual(
+ len(m1._cells),
+ num_cols
+ )
+ self.assertEqual(
+ len(m1._cells[0]),
+ num_rows
+ )
+
+if __name__ == "__main__":
+ unittest.main()