Commit 7e44b6b0 authored by Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Add more tests to unicodedata with large code points

(the other functions where not affected by the recent change)
parent d5f2b542
......@@ -299,6 +299,8 @@ class UnicodeMiscTest(UnicodeDatabaseTest):
# even on a narrow Unicode build
self.assertEqual(self.db.category("\U0001012A"), "No")
self.assertEqual(self.db.numeric("\U0001012A"), 9000)
self.assertEqual(self.db.decimal("\U0001D7FD"), 7)
self.assertEqual(self.db.digit("\U0001D7FD"), 7)
def test_main():
test.support.run_unittest(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment