1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

avoid duplicate code.

This commit is contained in:
Shlomi Fish 2020-06-12 10:36:04 +03:00
parent 11449de1b4
commit 3ee4e134a8

View file

@ -44,9 +44,9 @@ class Mock_S_Game:
class MyTests(unittest.TestCase):
def _calc_Scorpion_stack(self, isScorpionTail):
g = MockGame()
stack = (ScorpionTail_RowStack(0, 0, g)
stack = (ScorpionTail_RowStack
if isScorpionTail
else Scorpion_RowStack(0, 0, g))
else Scorpion_RowStack)(0, 0, g)
for s, r in [(2, 5), (3, 7), (2, 7), (2, 0), (2, 3), (2, 4), (1, 4)]:
c = AbstractCard(1000+r*100+s*10, 0, s, r, g)
c.face_up = True