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

Fix the 'picturegallery' game.

See https://github.com/shlomif/PySolFC/issues/140 . Thanks to
@scottfurry for testing.
This commit is contained in:
Shlomi Fish 2019-08-07 12:28:29 +03:00
parent 836eb54008
commit c71c2fa07a
2 changed files with 13 additions and 1 deletions

View file

@ -17,3 +17,9 @@ class NewStruct(object):
ret = self.__class__() ret = self.__class__()
ret.__dict__.update(self.__dict__) ret.__dict__.update(self.__dict__)
return ret return ret
def addattr(self, **kw):
for k in kw.keys():
if k in self.__dict__:
raise AttributeError(k)
self.__dict__.update(kw)

View file

@ -2,7 +2,7 @@
import unittest import unittest
from pysollib.game import GameDrag from pysollib.game import GameDrag, GameStacks
class MyTests(unittest.TestCase): class MyTests(unittest.TestCase):
@ -10,3 +10,9 @@ class MyTests(unittest.TestCase):
d = GameDrag() d = GameDrag()
d.shadows.append("test") d.shadows.append("test")
self.assertTrue(len(d.shadows)) self.assertTrue(len(d.shadows))
def test_addattr(self):
s = GameStacks()
s.addattr(tableaux=[])
s.tableaux.append("myval")
self.assertEqual(s.tableaux, ["myval"])