()
| 160 | |
| 161 | #[test] |
| 162 | fn test_default_registry_has_copilot() { |
| 163 | let registry = AgentRegistry::with_defaults(); |
| 164 | let agent = registry.get("copilot"); |
| 165 | assert!(agent.is_some(), "Default registry should include copilot"); |
| 166 | assert_eq!(agent.unwrap().display_name(), "GitHub Copilot"); |
| 167 | } |
| 168 | |
| 169 | #[test] |
| 170 | fn test_default_registry_has_codex() { |