cpython/Lib/test/test_codecmaps_hk.py
Zachary Ware 66f2928479 Issue #18492: Allow all resources when tests are not run by regrtest.py.
This changeset also includes cleanup allowed by this behavior change.
2014-06-02 16:01:29 -05:00

19 lines
464 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__":
test_main()