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:
parent
836eb54008
commit
c71c2fa07a
2 changed files with 13 additions and 1 deletions
|
@ -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)
|
||||||
|
|
|
@ -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"])
|
||||||
|
|
Loading…
Add table
Reference in a new issue