Example #1
0
 def test_true_game_complete_check(self):
     players = [("white", 3), ("plum", 2)]
     test_game = Game(players)
     test_cards = ["dagger", "candlestick","rope","wrench","revolver","plum","white","scarlett","green","mustard","hall","billiard","study","dining","kitchen","ballroom","conservatory","library"]
     test_game.set_cards_incorrect(test_cards)
     self.assertTrue(test_game.is_complete())