()
| 220 | |
| 221 | #[test] |
| 222 | fn test_config_builder() { |
| 223 | let config = CodeConfig::new() |
| 224 | .add_skill_dir("/tmp/skills") |
| 225 | .add_agent_dir("/tmp/agents"); |
| 226 | |
| 227 | assert_eq!(config.skill_dirs.len(), 1); |
| 228 | assert_eq!(config.agent_dirs.len(), 1); |
| 229 | } |
| 230 | |
| 231 | #[test] |
| 232 | fn test_find_provider() { |
nothing calls this directly
no test coverage detected