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

Refactoring: generate dup code.

This commit is contained in:
Shlomi Fish 2018-05-12 20:45:21 +03:00
parent f630539e88
commit a8f297208b
5 changed files with 5 additions and 27 deletions

View file

@ -223,7 +223,9 @@ for ver in [2, 3]:
open(os.path.join(".", "tests", "unit-generated",
'test__%s__v%d.py' % (mod, ver)
), 'w').write('''#!/usr/bin/env python%(ver)d
from %(mod)s import mymain
mymain()
import unittest
from %(mod)s import MyTests
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)
''' % {'mod': mod, 'ver': ver})

View file

@ -19,9 +19,3 @@ class MyTests(unittest.TestCase):
# TEST
self.assertEqual(card2.rank, 7, 'card2.rank')
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)

View file

@ -19,9 +19,3 @@ class MyTests(unittest.TestCase):
# TEST
self.assertEqual(got, '8D', 'card2str2 works')
# diag('got == ' + got)
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)

View file

@ -166,9 +166,3 @@ KD QC 5C QH 6S 3D
self.assertEqual(err.cards, ["5H"])
return
self.fail("No exception thrown.")
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)

View file

@ -7,9 +7,3 @@ from pysollib.mfxutil import latin1_normalize
class MyTests(unittest.TestCase):
def test_output(self):
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)