MCPcopy Index your code
hub / github.com/python/cpython / test_decompressor_auto

Method test_decompressor_auto

Lib/test/test_lzma.py:101–106  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

99 self.assertEqual(lzd.unused_data, unused_data)
100
101 def test_decompressor_auto(self):
102 lzd = LZMADecompressor()
103 self._test_decompressor(lzd, COMPRESSED_XZ, lzma.CHECK_CRC64)
104
105 lzd = LZMADecompressor()
106 self._test_decompressor(lzd, COMPRESSED_ALONE, lzma.CHECK_NONE)
107
108 def test_decompressor_xz(self):
109 lzd = LZMADecompressor(lzma.FORMAT_XZ)

Callers

nothing calls this directly

Calls 2

_test_decompressorMethod · 0.95
LZMADecompressorClass · 0.85

Tested by

no test coverage detected