test_codecmaps_hk.py 411 Bytes
Newer Older
1 2 3 4 5
#
# test_codecmaps_hk.py
#   Codec mapping tests for HongKong encodings
#

6
from test import support
7
from test import multibytecodec_support
8 9
import unittest

10
class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
11 12
                       unittest.TestCase):
    encoding = 'big5hkscs'
13
    mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT'
14 15

if __name__ == "__main__":
16
    unittest.main()