(image, volatility, python)
| 294 | |
| 295 | |
| 296 | def test_mac_lsmod(image, volatility, python): |
| 297 | rc, out, _err = runvol_plugin("mac.lsmod.Lsmod", image, volatility, python) |
| 298 | out = out.lower() |
| 299 | |
| 300 | assert out.find(b"com.apple") != -1 |
| 301 | assert out.count(b"\n") > 10 |
| 302 | assert rc == 0 |
| 303 | |
| 304 | |
| 305 | def test_mac_lsof(image, volatility, python): |
nothing calls this directly
no test coverage detected