test_ohno.py 358 B

123456789101112131415
  1. import unittest
  2. from sandbox import ohno
  3. class test_ohno(unittest.TestCase):
  4. def test_simple(self):
  5. board = ohno.Board(4)
  6. board.set_initial([[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, -1, -1]])
  7. solved = board.solve()
  8. self.assertEqual(len(solved), 1)
  9. if __name__ == "__main__":
  10. unittest.main()