()
| 19 | assert "LIEF parser interface does not support this Python object: test_python.Empty" in captured.err |
| 20 | |
| 21 | def test_pathlib(): |
| 22 | lspath = Path(get_sample('ELF/ELF64_x86-64_binary_ls.bin')) |
| 23 | ls = lief.parse(lspath) |
| 24 | assert isinstance(ls, lief.ELF.Binary) |
| 25 | |
| 26 | def test_io(): |
| 27 | lspath = get_sample('ELF/ELF64_x86-64_binary_ls.bin') |
nothing calls this directly
no test coverage detected