(self)
| 48 | assert plan.steps[1].step_number == 2 |
| 49 | |
| 50 | def test_task_text(self): |
| 51 | plan = parse_plan(_TWO_STEP) |
| 52 | assert "IoT sites" in plan.steps[0].task |
| 53 | assert "assets" in plan.steps[1].task |
| 54 | |
| 55 | def test_server_names(self): |
| 56 | plan = parse_plan(_TWO_STEP) |
nothing calls this directly
no test coverage detected