mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Enable standard unittest discovery by creating __init__.py files and renaming test modules to test*.py.
22 lines
595 B
Python
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)
|