test_string.py 322 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. from __future__ import print_function, absolute_import, division
  3. from util.string.cast_ut import TestFromString, TestToString
  4. # Test discovery does not work in cython modules.
  5. # Reexporting test classes here to satisfy pylint and pytest.
  6. __all__ = [
  7. 'TestFromString',
  8. 'TestToString',
  9. ]