test03_capitalization.py 368 B

1234567891011121314151617181920
  1. from os import environ
  2. from unittest import TestCase
  3. from tests import TEST_DATA_DIR, reload_tables
  4. class TestCapitalization(TestCase):
  5. """
  6. Test capitalization.
  7. """
  8. def setUp(self):
  9. environ["TXL_CONFIG_TABLE_DIR"] = TEST_DATA_DIR
  10. reload_tables()
  11. def test_cap(self):
  12. pass
  13. def test_cap_ligatures(self):
  14. pass