本文整理匯總了Python中game.models.Game.addCards方法的典型用法代碼示例。如果您正苦於以下問題:Python Game.addCards方法的具體用法?Python Game.addCards怎麽用?Python Game.addCards使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類game.models.Game
的用法示例。
在下文中一共展示了Game.addCards方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_addCards_CorrectExpansionsAreIncluded
# 需要導入模塊: from game.models import Game [as 別名]
# 或者: from game.models.Game import addCards [as 別名]
def test_addCards_CorrectExpansionsAreIncluded(self):
createCards();
game = Game(id = 1, expansionList = "CAHe1")
game.addCards()
self.assertTrue(game.gamecard_set.filter(card__expansion = 'CAHe1').count() > 0)
self.assertTrue(game.gamecard_set.filter(card__expansion = 'CAHe2').count() == 0)
示例2: test_addCards_BaseIsAlwaysIncluded
# 需要導入模塊: from game.models import Game [as 別名]
# 或者: from game.models.Game import addCards [as 別名]
def test_addCards_BaseIsAlwaysIncluded(self):
createCards();
game = Game(id = 1, expansionList = "")
game.addCards()
self.assertTrue(game.gamecard_set.filter(card__expansion = 'Base').count() > 0)