(self)
| 3216 | self.assertIn("@somefile.txt", str(cm.exception)) |
| 3217 | |
| 3218 | def test_accepts_gz_file(self) -> None: |
| 3219 | with tempfile.NamedTemporaryFile(suffix=".gz") as f: |
| 3220 | result = collect_gz_files([f.name]) |
| 3221 | self.assertEqual(result, [os.path.abspath(f.name)]) |
| 3222 | |
| 3223 | |
| 3224 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected