1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/tests/unit/latin1_conv_unit.py
2018-03-13 16:38:31 +02:00

17 lines
448 B
Python

#!/usr/bin/env python3
# Written by Shlomi Fish, under the MIT Expat License.
# imports
import unittest
from pysollib.mfxutil import latin1_normalize
class MyTests(unittest.TestCase):
def test_output(self):
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
if __name__ == '__main__':
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)