48cde80276214c74ac1d6ccae45ee215461ef121
[pseudoku.git] / pseudoku / tests / integrity / simple.py
1 from pseudoku.grid import Grid
2
3 from pseudoku.tests import SudokuTestCase
4
5 class SimpleGridTestCase(SudokuTestCase):
6 """Tests the solving integrity of some puzzles that can be solved using
7 only elimination and uniqueness.
8 """
9
10 def test_simple(self):
11 self.assertSolvable("""
12 ...69.... 9.5..876. ..4..1.2.
13 6...5...3 38.....49 7...3...2
14 .7.9..3.. .231..4.8 ....83...
15 """)