(self)
| 655 | assert_array_equal(res, wanted) |
| 656 | |
| 657 | def test_compressed_gzip(self): |
| 658 | self.check_compressed(gzip.open, ('.gz',)) |
| 659 | |
| 660 | @pytest.mark.skipif(not HAS_BZ2, reason="Needs bz2") |
| 661 | def test_compressed_bz2(self): |
nothing calls this directly
no test coverage detected