1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

test presence of a <move/> element

add a testcase for the XML output
This commit is contained in:
Shlomi Fish 2025-02-01 13:52:43 +02:00
parent e05f72af6c
commit 97322f81f4

View file

@ -61,7 +61,11 @@ class ImportFileTests(unittest.TestCase):
def test_import_XML(self):
return self._successful_import__XML_test(
fn='tests/unit/data/with-10-for-rank.txt',
expected_regex='''<state><move pile="store0" position="0">''',
expected_regex=(
'''<state><move pile="store0" position="0">'''
'''<card id="[0-9]+" rank="four"'''
''' suit="clubs" turn="face-up"></card>'''
),
blurb='xml import worked')
def test_import(self):