()
| 133 | |
| 134 | #[test] |
| 135 | fn test_default_registry_has_claude_code() { |
| 136 | let registry = AgentRegistry::with_defaults(); |
| 137 | let agent = registry.get("claude-code"); |
| 138 | assert!( |
| 139 | agent.is_some(), |
| 140 | "Default registry should include claude-code" |
| 141 | ); |
| 142 | assert_eq!(agent.unwrap().display_name(), "Claude Code"); |
| 143 | } |
| 144 | |
| 145 | #[test] |
| 146 | fn test_default_registry_has_cursor() { |