()
| 206 | |
| 207 | |
| 208 | def test_extract_hist_ranges_empty_str(): |
| 209 | instr = "" |
| 210 | expected = [(0, 1, None)] # 0 == current session, None == to end |
| 211 | actual = list(extract_hist_ranges(instr)) |
| 212 | assert actual == expected |
| 213 | |
| 214 | |
| 215 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…