diff options
| author | yuzu-eva <stevenhu@web.de> | 2024-11-11 15:52:22 +0100 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2024-11-11 15:52:22 +0100 |
| commit | 696199a0227cfccb2247978b1ba8c1b03f1ae26d (patch) | |
| tree | 493c3f65fdb65634c1577529bcfbf76356d9ec4f /tests.py | |
initial commit
Diffstat (limited to 'tests.py')
| -rwxr-xr-x | tests.py | 22 |
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() |
