(self)
| 53 | assert order.count(1) == 1 |
| 54 | |
| 55 | def test_single_step(self): |
| 56 | plan = Plan(steps=[_step(1)], raw="") |
| 57 | assert [s.step_number for s in plan.resolved_order()] == [1] |
| 58 | |
| 59 | def test_empty_plan(self): |
| 60 | plan = Plan(steps=[], raw="") |
nothing calls this directly
no test coverage detected