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