Lines Matching refs:test_data
16 def _check_decompression(self, test_data, **kwargs):
19 temp_uncompressed = _test_utils.get_temp_uncompressed_name(test_data)
20 temp_compressed = _test_utils.get_temp_compressed_name(test_data)
21 original = test_data
27 def _compress(self, test_data, **kwargs):
28 temp_compressed = _test_utils.get_temp_compressed_name(test_data)
30 with open(test_data, 'rb') as in_file:
33 def _test_compress(self, test_data, **kwargs):
34 self._compress(test_data, **kwargs)
35 self._check_decompression(test_data, **kwargs)