mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
add py2 tests
This commit is contained in:
parent
6c46979284
commit
6304994ed4
2 changed files with 2 additions and 3 deletions
|
@ -216,6 +216,7 @@ for ver in [2, 3]:
|
||||||
for mod in [
|
for mod in [
|
||||||
'pysol_tests.acard_unit',
|
'pysol_tests.acard_unit',
|
||||||
'pysol_tests.import_file1',
|
'pysol_tests.import_file1',
|
||||||
|
'pysol_tests.latin1_conv_unit',
|
||||||
'pysol_tests.ms_deals1',
|
'pysol_tests.ms_deals1',
|
||||||
]:
|
]:
|
||||||
open(os.path.join(".", "tests", "unit-generated",
|
open(os.path.join(".", "tests", "unit-generated",
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
# Written by Shlomi Fish, under the MIT Expat License.
|
# Written by Shlomi Fish, under the MIT Expat License.
|
||||||
|
|
||||||
# imports
|
|
||||||
import unittest
|
import unittest
|
||||||
from pysollib.mfxutil import latin1_normalize
|
from pysollib.mfxutil import latin1_normalize
|
||||||
|
|
||||||
|
@ -11,7 +9,7 @@ class MyTests(unittest.TestCase):
|
||||||
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
|
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
def mymain():
|
||||||
from pycotap import TAPTestRunner
|
from pycotap import TAPTestRunner
|
||||||
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
|
||||||
TAPTestRunner().run(suite)
|
TAPTestRunner().run(suite)
|
Loading…
Add table
Reference in a new issue