()
| 1492 | |
| 1493 | #[test] |
| 1494 | fn test_parse_agent_md_missing_frontmatter() { |
| 1495 | let md = "Just markdown without frontmatter"; |
| 1496 | let result = parse_agent_md(md); |
| 1497 | assert!(result.is_err()); |
| 1498 | } |
| 1499 | |
| 1500 | #[test] |
| 1501 | fn test_load_agents_from_dir() { |
nothing calls this directly
no test coverage detected