2004-07-18 03:06:29 +00:00
|
|
|
#
|
|
|
|
# test_codecmaps_hk.py
|
|
|
|
# Codec mapping tests for HongKong encodings
|
|
|
|
#
|
|
|
|
|
2012-04-09 13:37:52 +00:00
|
|
|
from test import multibytecodec_support
|
2004-07-18 03:06:29 +00:00
|
|
|
import unittest
|
|
|
|
|
2012-04-09 13:37:52 +00:00
|
|
|
class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
|
2004-07-18 03:06:29 +00:00
|
|
|
unittest.TestCase):
|
|
|
|
encoding = 'big5hkscs'
|
2014-11-06 13:37:49 +00:00
|
|
|
mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT'
|
2004-07-18 03:06:29 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2014-07-02 00:55:04 +00:00
|
|
|
unittest.main()
|