()
| 448 | |
| 449 | #[test] |
| 450 | fn test_config_has_directories() { |
| 451 | let empty = CodeConfig::default(); |
| 452 | assert!(!empty.has_directories()); |
| 453 | |
| 454 | let with_skills = CodeConfig::new().add_skill_dir("/tmp/skills"); |
| 455 | assert!(with_skills.has_directories()); |
| 456 | |
| 457 | let with_agents = CodeConfig::new().add_agent_dir("/tmp/agents"); |
| 458 | assert!(with_agents.has_directories()); |
| 459 | } |
| 460 | |
| 461 | #[test] |
| 462 | fn test_config_has_providers() { |
nothing calls this directly
no test coverage detected