(instr, expected, description)
| 237 | ], |
| 238 | ) |
| 239 | def test_misc_extract_hist_ranges(instr, expected, description): |
| 240 | actual = list(extract_hist_ranges(instr)) |
| 241 | assert ( |
| 242 | actual == expected |
| 243 | ), f"Failed for '{instr}' ({description}): expected {expected}, got {actual}" |
| 244 | |
| 245 | |
| 246 | def test_magic_rerun(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…