()
| 1427 | |
| 1428 | #[test] |
| 1429 | fn test_parse_agent_yaml_missing_name() { |
| 1430 | let yaml = r#" |
| 1431 | description: Agent without name |
| 1432 | "#; |
| 1433 | let result = parse_agent_yaml(yaml); |
| 1434 | assert!(result.is_err()); |
| 1435 | } |
| 1436 | |
| 1437 | #[test] |
| 1438 | fn test_parse_agent_md() { |
nothing calls this directly
no test coverage detected