Ejemplo n.º 1
0
 def test_checking_a_stalemated_board(self):
     self.board.spots = ["X", "X", "O", "O", "O", "X", "X", "X", "O"]
     self.assertTrue(Scorer.is_game_stalemate(self.board))
Ejemplo n.º 2
0
 def test_checking_a_stalemated_board(self):
     self.board.spots = ["X", "X", "O", "O", "O", "X", "X", "X", "O"]
     self.assertTrue(Scorer.is_game_stalemate(self.board))
Ejemplo n.º 3
0
 def test_checking_an_unstalemated_board(self):
     self.assertFalse(Scorer.is_game_stalemate(self.board))
Ejemplo n.º 4
0
 def test_checking_an_unstalemated_board(self):
     self.assertFalse(Scorer.is_game_stalemate(self.board))