4 # Codec mapping tests for PRC encodings
7 from test
import test_support
8 from test
import test_multibytecodec_support
11 class TestGB2312Map(test_multibytecodec_support
.TestBase_Mapping
,
14 mapfileurl
= 'http://people.freebsd.org/~perky/i18n/EUC-CN.TXT'
16 class TestGBKMap(test_multibytecodec_support
.TestBase_Mapping
,
19 mapfileurl
= 'http://www.unicode.org/Public/MAPPINGS/VENDORS/' \
20 'MICSFT/WINDOWS/CP936.TXT'
22 class TestGB18030Map(test_multibytecodec_support
.TestBase_Mapping
,
25 mapfileurl
= 'http://source.icu-project.org/repos/icu/data/' \
26 'trunk/charset/data/xml/gb-18030-2000.xml'
30 test_support
.run_unittest(__name__
)
32 if __name__
== "__main__":