()
| 145 | |
| 146 | #[test] |
| 147 | fn test_default_registry_has_cursor() { |
| 148 | let registry = AgentRegistry::with_defaults(); |
| 149 | let agent = registry.get("cursor"); |
| 150 | assert!(agent.is_some(), "Default registry should include cursor"); |
| 151 | assert_eq!(agent.unwrap().display_name(), "Cursor"); |
| 152 | } |
| 153 | |
| 154 | #[test] |
| 155 | fn test_default_registry_has_cline() { |