Beispiel #1
0
 def test_board_has_empty_cells(self):
     b = Board()
     assert not b.is_full()
Beispiel #2
0
 def test_board_is_full(self):
     b = Board(['g'])
     assert b.is_full()