blob: 1068d0ba04f4b49dfc5b720c52cf5c1732a70011 [file] [log] [blame]
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +00001#!/usr/bin/env python
2#
3# test_codecmaps_hk.py
4# Codec mapping tests for HongKong encodings
5#
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +00006
7from test import test_support
8from test import test_multibytecodec_support
9import unittest
10
11class TestBig5HKSCSMap(test_multibytecodec_support.TestBase_Mapping,
12 unittest.TestCase):
13 encoding = 'big5hkscs'
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000014 mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS.TXT'
15
16def test_main():
Guido van Rossumd8faa362007-04-27 19:54:29 +000017 test_support.run_unittest(__name__)
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000018
Hye-Shik Chang2bb146f2004-07-18 03:06:29 +000019if __name__ == "__main__":
20 test_main()