(self)
| 663 | |
| 664 | @pytest.mark.skipif(not HAS_LZMA, reason="Needs lzma") |
| 665 | def test_compressed_lzma(self): |
| 666 | self.check_compressed(lzma.open, ('.xz', '.lzma')) |
| 667 | |
| 668 | def test_encoding(self): |
| 669 | with temppath() as path: |
nothing calls this directly
no test coverage detected