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