diff options
Diffstat (limited to 'tests.py')
| -rwxr-xr-x | tests.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests.py b/tests.py deleted file mode 100755 index f233699..0000000 --- a/tests.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/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() |
