3 # test_codecencodings_tw.py
4 # Codec encoding tests for ROC encodings.
7 from test
import test_support
8 from test
import test_multibytecodec_support
11 class Test_Big5(test_multibytecodec_support
.TestBase
, unittest
.TestCase
):
13 tstring
= test_multibytecodec_support
.load_teststring('big5')
16 ("abc\x80\x80\xc1\xc4", "strict", None),
17 ("abc\xc8", "strict", None),
18 ("abc\x80\x80\xc1\xc4", "replace", u
"abc\ufffd\u8b10"),
19 ("abc\x80\x80\xc1\xc4\xc8", "replace", u
"abc\ufffd\u8b10\ufffd"),
20 ("abc\x80\x80\xc1\xc4", "ignore", u
"abc\u8b10"),
24 test_support
.run_unittest(__name__
)
26 if __name__
== "__main__":