Mercurial > p > roundup > code
changeset 7824:ebb03b8cee4d
test: invoke test function in cmp_.py.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 24 Mar 2024 10:50:08 -0400 |
| parents | 5ac9253d2a5f |
| children | ee0062411160 |
| files | test/test_anypy.py |
| diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/test_anypy.py Sat Mar 23 19:37:23 2024 -0400 +++ b/test/test_anypy.py Sun Mar 24 10:50:08 2024 -0400 @@ -3,6 +3,7 @@ import unittest from roundup.anypy.strings import repr_export, eval_import +from roundup.anypy.cmp_ import _test import sys _py3 = sys.version_info[0] > 2 @@ -58,3 +59,7 @@ val = repr_export(('issue', '2345', 'status')) self.assertEqual(val, "('issue', '2345', 'status')") +class MiscTest(unittest.TestCase): + + def test_cmp_(self): + _test()
