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

Function test_store_save_with_keypair

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

Source from the content-addressed store, hash-verified

804
805 #[test]
806 fn test_store_save_with_keypair() {
807 let (_temp, store) = create_test_store();
808
809 let keypair = KeyPair::generate();
810 let identity = Identity::new("bob", &keypair);
811
812 store.save_with_keypair(&identity, &keypair, None).unwrap();
813
814 let loaded_keypair = store.load_keypair(&identity.id, None).unwrap();
815 assert_eq!(loaded_keypair.public, keypair.public);
816 }
817
818 #[test]
819 fn test_store_load_by_name() {

Callers

nothing calls this directly

Calls 4

save_with_keypairMethod · 0.80
load_keypairMethod · 0.80
create_test_storeFunction · 0.70
unwrapMethod · 0.45

Tested by

no test coverage detected