Home | History | Annotate | Download | only in test
      1 #
      2 # test_codecmaps_hk.py
      3 #   Codec mapping tests for HongKong encodings
      4 #
      5 
      6 from test import multibytecodec_support
      7 import unittest
      8 
      9 class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
     10                        unittest.TestCase):
     11     encoding = 'big5hkscs'
     12     mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT'
     13 
     14 if __name__ == "__main__":
     15     unittest.main()
     16