You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
719 B
29 lines
719 B
#
|
|
# test_codecmaps_tw.py
|
|
# Codec mapping tests for ROC encodings
|
|
#
|
|
|
|
from test import test_support
|
|
from test import multibytecodec_support
|
|
import unittest
|
|
|
|
class TestBIG5Map(multibytecodec_support.TestBase_Mapping,
|
|
unittest.TestCase):
|
|
encoding = 'big5'
|
|
mapfileurl = 'http://www.pythontest.net/unicode/BIG5.TXT'
|
|
|
|
class TestCP950Map(multibytecodec_support.TestBase_Mapping,
|
|
unittest.TestCase):
|
|
encoding = 'cp950'
|
|
mapfileurl = 'http://www.pythontest.net/unicode/CP950.TXT'
|
|
pass_enctest = [
|
|
('\xa2\xcc', u'\u5341'),
|
|
('\xa2\xce', u'\u5345'),
|
|
]
|
|
|
|
def test_main():
|
|
test_support.run_unittest(__name__)
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|