File: test_estimate_sizes.py

package info (click to toggle)
python-zstandard 0.24.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,912 kB
  • sloc: ansic: 42,099; python: 8,683; makefile: 22; sh: 14
file content (9 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
import unittest

import zstandard as zstd


class TestSizes(unittest.TestCase):
    def test_decompression_size(self):
        size = zstd.estimate_decompression_context_size()
        self.assertGreater(size, 90000)