File: test_version.py

package info (click to toggle)
python-zstd 1.5.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,320 kB
  • sloc: ansic: 44,718; asm: 371; python: 322; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Tests

from tests.base import BaseTestZSTD

class TestZstdVersion(BaseTestZSTD):

    def test_module_version(self):
        BaseTestZSTD.helper_version(self)

    def test_library_version_number_min(self):
        BaseTestZSTD.helper_zstd_version_number_min(self)

    def test_library_version(self):
        BaseTestZSTD.helper_zstd_version(self)

    def test_library_version_number(self):
        BaseTestZSTD.helper_zstd_version_number(self)

if __name__ == '__main__':
    unittest.main()