aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/ut_cython/test_string.py
blob: f332597c59eee503b7228524c82c6ec1eedec148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-

from __future__ import print_function, absolute_import, division

from util.string.cast_ut import TestFromString, TestToString

# Test discovery does not work in cython modules.
# Reexporting test classes here to satisfy pylint and pytest.

__all__ = [
    'TestFromString',
    'TestToString',
]