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