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

Function test_store_clear

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

Source from the content-addressed store, hash-verified

1159
1160 #[test]
1161 fn test_store_clear() {
1162 let (_dir, store) = make_store();
1163
1164 store.save(&make_session()).unwrap();
1165 assert!(store.load("sess-abc-123").unwrap().is_some());
1166
1167 store.clear("sess-abc-123").unwrap();
1168 assert!(store.load("sess-abc-123").unwrap().is_none());
1169 }
1170
1171 #[test]
1172 fn test_store_clear_nonexistent_is_ok() {

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected