()
| 2248 | |
| 2249 | #[test] |
| 2250 | fn test_init_creates_agents_directory() { |
| 2251 | let temp_dir = TempDir::new().unwrap(); |
| 2252 | |
| 2253 | init(temp_dir.path(), false).unwrap(); |
| 2254 | |
| 2255 | let agents_dir = temp_dir.path().join(".agents"); |
| 2256 | assert!(agents_dir.exists()); |
| 2257 | assert!(agents_dir.is_dir()); |
| 2258 | } |
| 2259 | |
| 2260 | #[test] |
| 2261 | fn test_init_creates_skills_directory() { |