MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_store_count

Function test_store_count

atomic-agent/src/turn/session.rs:1242–1252  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1240
1241 #[test]
1242 fn test_store_count() {
1243 let (_dir, store) = make_store();
1244
1245 assert_eq!(store.count().unwrap(), 0);
1246
1247 store.save(&make_session()).unwrap();
1248 assert_eq!(store.count().unwrap(), 1);
1249
1250 store.save(&AgentSession::new("sess-2", "a", "A")).unwrap();
1251 assert_eq!(store.count().unwrap(), 2);
1252 }
1253
1254 // SessionStore: for_repo
1255

Callers

nothing calls this directly

Calls 4

make_storeFunction · 0.85
make_sessionFunction · 0.70
unwrapMethod · 0.45
saveMethod · 0.45

Tested by

no test coverage detected