()
| 554 | |
| 555 | #[test] |
| 556 | fn test_parse_empty_steps_ok() { |
| 557 | // An empty steps array is valid JSON for our schema (no minimum). |
| 558 | let plan = parse_plan(r#"{"steps": []}"#).unwrap(); |
| 559 | assert!(plan.steps.is_empty()); |
| 560 | } |
| 561 | |
| 562 | #[test] |
| 563 | fn test_parse_unknown_step_type_errors() { |
nothing calls this directly
no test coverage detected