(self)
| 659 | |
| 660 | @pytest.mark.skipif(not HAS_BZ2, reason="Needs bz2") |
| 661 | def test_compressed_bz2(self): |
| 662 | self.check_compressed(bz2.open, ('.bz2',)) |
| 663 | |
| 664 | @pytest.mark.skipif(not HAS_LZMA, reason="Needs lzma") |
| 665 | def test_compressed_lzma(self): |
nothing calls this directly
no test coverage detected