()
| 16 | |
| 17 | |
| 18 | def test_gzip(): |
| 19 | for i in range(1000): |
| 20 | b1 = random_string(100).encode('utf-8') |
| 21 | b2 = gzip_decode(gzip_encode(b1)) |
| 22 | assert b1 == b2 |
| 23 | |
| 24 | |
| 25 | @pytest.mark.skipif(not has_snappy(), reason="Snappy not available") |
nothing calls this directly
no test coverage detected
searching dependent graphs…