()
| 1063 | |
| 1064 | #[test] |
| 1065 | fn test_store_load_nonexistent() { |
| 1066 | let (_dir, store) = make_store(); |
| 1067 | let loaded = store.load("does-not-exist").unwrap(); |
| 1068 | assert!(loaded.is_none()); |
| 1069 | } |
| 1070 | |
| 1071 | #[test] |
| 1072 | fn test_store_save_overwrites() { |
nothing calls this directly
no test coverage detected