MCPcopy Create free account
hub / github.com/dallay/agentsync / test_init_creates_agents_directory

Function test_init_creates_agents_directory

src/init.rs:2250–2258  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

initFunction · 0.85

Tested by

no test coverage detected