()
| 870 | |
| 871 | #[test] |
| 872 | fn test_store_delete() { |
| 873 | let (_temp, mut store) = create_test_store(); |
| 874 | |
| 875 | let identity = Identity::generate("to-delete"); |
| 876 | store.save(&identity).unwrap(); |
| 877 | assert!(store.exists(&identity.id)); |
| 878 | |
| 879 | store.delete(&identity.id).unwrap(); |
| 880 | assert!(!store.exists(&identity.id)); |
| 881 | } |
| 882 | |
| 883 | #[test] |
| 884 | fn test_store_default_identity() { |
nothing calls this directly
no test coverage detected