Mercurial > hgrepos > Python > apps > py-cutils
comparison tests/test_crcmod.py @ 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 | |
| children | d50e89d92fa3 |
comparison
equal
deleted
inserted
replaced
| 180:d038f0a9ba49 | 181:c4f737ec368c |
|---|---|
| 1 # -*- coding: utf-8 -*- | |
| 2 r"""Unit tests for the vendored crcmod2 package. | |
| 3 | |
| 4 """ | |
| 5 | |
| 6 from __future__ import absolute_import, print_function | |
| 7 | |
| 8 import unittest | |
| 9 | |
| 10 import _test_setup | |
| 11 | |
| 12 import cutils.crcmod.test | |
| 13 | |
| 14 | |
| 15 if __name__ == "__main__": | |
| 16 unittest.main(module=cutils.crcmod.test) |
