contrib/python-zstandard/tests/test_estimate_sizes.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 18 Dec 2019 13:39:44 -0800
changeset 43954 303576116ac1
parent 37495 b1fb341d8a61
child 43994 de7838053207
permissions -rw-r--r--
import-checker: allow all absolute imports of stdlib modules Before this patch, we didn't allow imports like from importlib import resources (That's the reason I used `import importlib.resources` in D7629.) I think that form is still an absolute import, so I don't think we forbade on purpose. Differential Revision: https://phab.mercurial-scm.org/D7700

import unittest

import zstandard as zstd

from . common import (
    make_cffi,
)


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