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