()
| 930 | |
| 931 | #[test] |
| 932 | fn test_store_exists() { |
| 933 | let (_temp, store) = create_test_store(); |
| 934 | |
| 935 | let identity = Identity::generate("exists-test"); |
| 936 | assert!(!store.exists(&identity.id)); |
| 937 | |
| 938 | store.save(&identity).unwrap(); |
| 939 | assert!(store.exists(&identity.id)); |
| 940 | } |
| 941 | } |
nothing calls this directly
no test coverage detected