Python code coverage for Lib/test/test_codecmaps_hk.py
# | count | content |
---|---|---|
1 | n/a | # |
2 | n/a | # test_codecmaps_hk.py |
3 | n/a | # Codec mapping tests for HongKong encodings |
4 | n/a | # |
5 | n/a | |
6 | n/a | from test import multibytecodec_support |
7 | n/a | import unittest |
8 | n/a | |
9 | n/a | class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping, |
10 | n/a | unittest.TestCase): |
11 | n/a | encoding = 'big5hkscs' |
12 | n/a | mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT' |
13 | n/a | |
14 | n/a | if __name__ == "__main__": |
15 | n/a | unittest.main() |