()
| 29 | |
| 30 | |
| 31 | def test_step_tracker_instantiable(): |
| 32 | tracker = StepTracker("test") |
| 33 | tracker.add("step1", "Step One") |
| 34 | tracker.complete("step1", "done") |
| 35 | assert tracker.steps[0]["status"] == "done" |
| 36 | |
| 37 | |
| 38 | def test_select_with_arrows_raises_on_empty_options(): |
nothing calls this directly
no test coverage detected