blob: 7a48d24fddbb86484c24ac6a63afb0bd39c75742 [file] [log] [blame]
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +00001#
2# test_codecmaps_hk.py
3# Codec mapping tests for HongKong encodings
4#
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +00005
R David Murray75d9aca2012-04-09 09:37:52 -04006from test import multibytecodec_support
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +00007import unittest
8
R David Murray75d9aca2012-04-09 09:37:52 -04009class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000010 unittest.TestCase):
11 encoding = 'big5hkscs'
Georg Brandl5a155082014-11-06 14:37:49 +010012 mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT'
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000013
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000014if __name__ == "__main__":
Zachary Wared9de7942014-07-01 19:55:04 -050015 unittest.main()