mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
15 lines
402 B
Python
15 lines
402 B
Python
# Written by Shlomi Fish, under the MIT Expat License.
|
|
|
|
import unittest
|
|
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)
|