Skip to content

Commit b2e3803

Browse files
committed
test: invoke test function in cmp_.py.
1 parent 04d05ad commit b2e3803

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/test_anypy.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import unittest
55
from roundup.anypy.strings import repr_export, eval_import
6+
from roundup.anypy.cmp_ import _test
67

78
import sys
89
_py3 = sys.version_info[0] > 2
@@ -58,3 +59,7 @@ def test_export_params(self):
5859
val = repr_export(('issue', '2345', 'status'))
5960
self.assertEqual(val, "('issue', '2345', 'status')")
6061

62+
class MiscTest(unittest.TestCase):
63+
64+
def test_cmp_(self):
65+
_test()

0 commit comments

Comments
 (0)