cpython/Lib/test/test_codecmaps_hk.py
Serhiy Storchaka b992a0e102 Issue #19936: Added executable bits or shebang lines to Python scripts which
requires them.  Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.  Fixed
shebang line to use python3 executable in the unittestgui script.
2014-01-16 17:15:49 +02:00

20 lines
505 B
Python

#
# test_codecmaps_hk.py
# Codec mapping tests for HongKong encodings
#
from test import support
from test import multibytecodec_support
import unittest
class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
unittest.TestCase):
encoding = 'big5hkscs'
mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS-2004.TXT'
def test_main():
support.run_unittest(__name__)
if __name__ == "__main__":
support.use_resources = ['urlfetch']
test_main()