File: test_version.py

package info (click to toggle)
python-zstd 1.5.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,436 kB
  • sloc: ansic: 47,099; python: 1,083; asm: 390; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
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()