mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Enable standard unittest discovery by creating __init__.py files and renaming test modules to test*.py.
10 lines
257 B
Python
10 lines
257 B
Python
# Written by Shlomi Fish, under the MIT Expat License.
|
|
|
|
import unittest
|
|
|
|
from pysollib.mfxutil import latin1_normalize
|
|
|
|
|
|
class Latin1Tests(unittest.TestCase):
|
|
def test_output(self):
|
|
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
|