(capsys)
| 116 | |
| 117 | |
| 118 | def test_with_alias(capsys): |
| 119 | dsk = { |
| 120 | "a": 1, |
| 121 | "b": 2, |
| 122 | "c": (add, "a", "b"), |
| 123 | "d": (add, 1, 2), |
| 124 | "e": "d", |
| 125 | "f": (mul, "e", "c"), |
| 126 | } |
| 127 | with ProgressBar(): |
| 128 | get_threaded(dsk, "f") |
| 129 | check_bar_completed(capsys) |
| 130 | |
| 131 | |
| 132 | def test_store_time(): |
nothing calls this directly
no test coverage detected