1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/tests/lib/pysol_tests/game_drag.py
Shlomi Fish c71c2fa07a Fix the 'picturegallery' game.
See https://github.com/shlomif/PySolFC/issues/140 . Thanks to
@scottfurry for testing.
2019-08-07 12:28:29 +03:00

18 lines
448 B
Python

# Written by Shlomi Fish, under the MIT Expat License.
import unittest
from pysollib.game import GameDrag, GameStacks
class MyTests(unittest.TestCase):
def test_shadows(self):
d = GameDrag()
d.shadows.append("test")
self.assertTrue(len(d.shadows))
def test_addattr(self):
s = GameStacks()
s.addattr(tableaux=[])
s.tableaux.append("myval")
self.assertEqual(s.tableaux, ["myval"])