##// END OF EJS Templates
bundle1: display server abort hint during unbundle...
bundle1: display server abort hint during unbundle The code was printing the abort message but not the hint. This is now fixed.

File last commit:

r30895:c32454d6 default
r30910:accaa04f stable
Show More
test_estimate_sizes.py
17 lines | 460 B | text/x-python | PythonLexer
try:
import unittest2 as unittest
except ImportError:
import unittest
import zstd
class TestSizes(unittest.TestCase):
def test_decompression_size(self):
size = zstd.estimate_decompression_context_size()
self.assertGreater(size, 100000)
def test_compression_size(self):
params = zstd.get_compression_parameters(3)
size = zstd.estimate_compression_context_size(params)
self.assertGreater(size, 100000)