1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Add a test.

This commit is contained in:
Shlomi Fish 2016-11-09 20:44:44 +02:00
parent c407010801
commit c28a9104c8

View file

@ -556,7 +556,7 @@ class Game:
def shlomif_main(args):
plan(7)
plan(8)
rand = constructRandom('24')
game = Game("freecell", rand, True)
@ -650,5 +650,12 @@ QH 9H 9D 5S 7S 6C
# TEST
ok (got == inp, 'long2str PySolFC roundtrip.')
proto_inp = '246007891097'
inp = random__str2long(proto_inp)
got = random__str2long(random__long2str(inp))
# TEST
ok (got == inp, 'str2long PySolFC roundtrip.')
if __name__ == "__main__":
sys.exit(shlomif_main(sys.argv))