mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Refactoring / code cleanup.
See: * https://en.wikipedia.org/wiki/Code_refactoring * https://www.refactoring.com/ * https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/ Some small optimisations may have slipped in as well.
This commit is contained in:
parent
2b2d23f958
commit
5e10f11ca5
1 changed files with 2 additions and 6 deletions
|
@ -42,12 +42,8 @@ class MyTests(unittest.TestCase):
|
|||
def _calc_Scorpion_stack(self):
|
||||
g = MockGame()
|
||||
stack = Scorpion_RowStack(0, 0, g)
|
||||
cards = [
|
||||
AbstractCard(1000+r*100+s*10, 0, s, r, g)
|
||||
for s, r in [(2, 5), (3, 7), (2, 7), (2, 0),
|
||||
(2, 3), (2, 4), (1, 4)]
|
||||
]
|
||||
for c in cards:
|
||||
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
|
||||
c.item = MockItem()
|
||||
stack.addCard(c)
|
||||
|
|
Loading…
Add table
Reference in a new issue