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/test_hint.py
Juhani Numminen 076ee8d11a Run unittests via a single TAP test
Enable standard unittest discovery by creating __init__.py files
and renaming test modules to test*.py.
2021-07-07 18:13:34 +03:00

22 lines
595 B
Python

# Written by Shlomi Fish, under the MIT Expat License.
import unittest
from pysollib.acard import AbstractCard
from pysollib.hint import Base_Solver_Hint
class HintTests(unittest.TestCase):
def test_output(self):
card = AbstractCard(1001, 0, 3, 7, 3001)
h = Base_Solver_Hint(None, None, base_rank=0)
got = h.card2str2(card)
# TEST
self.assertEqual(got, 'D-8', 'card2str2 works')
# diag('got == ' + got)
got = h.card2str1(card)
# TEST
self.assertEqual(got, '8D', 'card2str2 works')
# diag('got == ' + got)