Mercurial > hgrepos > Python > apps > py-cutils
changeset 181:c4f737ec368c
Add a unittest for the vendored crcmod2 (in cutils.crcmod)
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 13 Jan 2025 04:15:08 +0100 |
| parents | d038f0a9ba49 |
| children | 31d478ff4e09 |
| files | tests/test_crcmod.py |
| diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_crcmod.py Mon Jan 13 04:15:08 2025 +0100 @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +r"""Unit tests for the vendored crcmod2 package. + +""" + +from __future__ import absolute_import, print_function + +import unittest + +import _test_setup + +import cutils.crcmod.test + + +if __name__ == "__main__": + unittest.main(module=cutils.crcmod.test)
