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_acard.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
586 B
Python

# Written by Shlomi Fish, under the MIT Expat License.
import unittest
from pysollib.acard import AbstractCard
class AbstractCardTests(unittest.TestCase):
def test_cards(self):
card1 = AbstractCard(1001, 0, 1, 2, 3001)
# TEST
self.assertEqual(card1.color, 0, 'card1.color is sane.')
# TEST
self.assertEqual(card1.rank, 2, 'card1.rank')
card2 = AbstractCard(1001, 0, 3, 7, 3001)
# TEST
self.assertEqual(card2.color, 1, 'card2.color is sane.')
# TEST
self.assertEqual(card2.rank, 7, 'card2.rank')