(capsys)
| 33 | |
| 34 | |
| 35 | def test_progressbar(capsys): |
| 36 | with ProgressBar(): |
| 37 | out = get_threaded(dsk, "e") |
| 38 | assert out == 6 |
| 39 | check_bar_completed(capsys) |
| 40 | with ProgressBar(width=20): |
| 41 | out = get_threaded(dsk, "e") |
| 42 | check_bar_completed(capsys, 20) |
| 43 | |
| 44 | |
| 45 | def test_minimum_time(capsys): |
nothing calls this directly
no test coverage detected
searching dependent graphs…