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:
parent
f630539e88
commit
a8f297208b
5 changed files with 5 additions and 27 deletions
|
@ -223,7 +223,9 @@ for ver in [2, 3]:
|
||||||
open(os.path.join(".", "tests", "unit-generated",
|
open(os.path.join(".", "tests", "unit-generated",
|
||||||
'test__%s__v%d.py' % (mod, ver)
|
'test__%s__v%d.py' % (mod, ver)
|
||||||
), 'w').write('''#!/usr/bin/env python%(ver)d
|
), 'w').write('''#!/usr/bin/env python%(ver)d
|
||||||
from %(mod)s import mymain
|
import unittest
|
||||||
|
from %(mod)s import MyTests
|
||||||
mymain()
|
from pycotap import TAPTestRunner
|
||||||
|
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
||||||
|
TAPTestRunner().run(suite)
|
||||||
''' % {'mod': mod, 'ver': ver})
|
''' % {'mod': mod, 'ver': ver})
|
||||||
|
|
|
@ -19,9 +19,3 @@ class MyTests(unittest.TestCase):
|
||||||
|
|
||||||
# TEST
|
# TEST
|
||||||
self.assertEqual(card2.rank, 7, 'card2.rank')
|
self.assertEqual(card2.rank, 7, 'card2.rank')
|
||||||
|
|
||||||
|
|
||||||
def mymain():
|
|
||||||
from pycotap import TAPTestRunner
|
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
|
||||||
TAPTestRunner().run(suite)
|
|
||||||
|
|
|
@ -19,9 +19,3 @@ class MyTests(unittest.TestCase):
|
||||||
# TEST
|
# TEST
|
||||||
self.assertEqual(got, '8D', 'card2str2 works')
|
self.assertEqual(got, '8D', 'card2str2 works')
|
||||||
# diag('got == ' + got)
|
# diag('got == ' + got)
|
||||||
|
|
||||||
|
|
||||||
def mymain():
|
|
||||||
from pycotap import TAPTestRunner
|
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
|
||||||
TAPTestRunner().run(suite)
|
|
||||||
|
|
|
@ -166,9 +166,3 @@ KD QC 5C QH 6S 3D
|
||||||
self.assertEqual(err.cards, ["5H"])
|
self.assertEqual(err.cards, ["5H"])
|
||||||
return
|
return
|
||||||
self.fail("No exception thrown.")
|
self.fail("No exception thrown.")
|
||||||
|
|
||||||
|
|
||||||
def mymain():
|
|
||||||
from pycotap import TAPTestRunner
|
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
|
||||||
TAPTestRunner().run(suite)
|
|
||||||
|
|
|
@ -7,9 +7,3 @@ from pysollib.mfxutil import latin1_normalize
|
||||||
class MyTests(unittest.TestCase):
|
class MyTests(unittest.TestCase):
|
||||||
def test_output(self):
|
def test_output(self):
|
||||||
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
|
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
|
||||||
|
|
||||||
|
|
||||||
def mymain():
|
|
||||||
from pycotap import TAPTestRunner
|
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
|
||||||
TAPTestRunner().run(suite)
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue