()
| 24 | |
| 25 | @pytest.mark.skipif(not has_snappy(), reason="Snappy not available") |
| 26 | def test_snappy(): |
| 27 | for i in range(1000): |
| 28 | b1 = random_string(100).encode('utf-8') |
| 29 | b2 = snappy_decode(snappy_encode(b1)) |
| 30 | assert b1 == b2 |
| 31 | |
| 32 | |
| 33 | @pytest.mark.skipif(not has_snappy(), reason="Snappy not available") |
nothing calls this directly
no test coverage detected
searching dependent graphs…