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

Function test_store_save_and_load

atomic-identity/src/store.rs:794–803  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

792
793 #[test]
794 fn test_store_save_and_load() {
795 let (_temp, store) = create_test_store();
796
797 let identity = Identity::generate("alice");
798 store.save(&identity).unwrap();
799
800 let loaded = store.load(&identity.id).unwrap();
801 assert_eq!(loaded.name, "alice");
802 assert_eq!(loaded.id, identity.id);
803 }
804
805 #[test]
806 fn test_store_save_with_keypair() {

Callers

nothing calls this directly

Calls 4

create_test_storeFunction · 0.70
unwrapMethod · 0.45
saveMethod · 0.45
loadMethod · 0.45

Tested by

no test coverage detected