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

Function test_store_clear

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

Source from the content-addressed store, hash-verified

1103
1104 #[test]
1105 fn test_store_clear() {
1106 let (_dir, store) = make_store();
1107
1108 store.save(&make_session()).unwrap();
1109 assert!(store.load("sess-abc-123").unwrap().is_some());
1110
1111 store.clear("sess-abc-123").unwrap();
1112 assert!(store.load("sess-abc-123").unwrap().is_none());
1113 }
1114
1115 #[test]
1116 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