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