()
| 670 | |
| 671 | #[test] |
| 672 | fn test_load_from_nonexistent_dir() { |
| 673 | let registry = SkillRegistry::new(); |
| 674 | let result = registry.load_from_dir("/nonexistent/path"); |
| 675 | |
| 676 | assert!(result.is_ok()); |
| 677 | assert_eq!(result.unwrap(), 0); |
| 678 | } |
| 679 | |
| 680 | #[test] |
| 681 | fn test_load_from_dir_rejects_file_path() -> anyhow::Result<()> { |
nothing calls this directly
no test coverage detected