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