()
| 1119 | |
| 1120 | #[test] |
| 1121 | fn test_store_load_nonexistent() { |
| 1122 | let (_dir, store) = make_store(); |
| 1123 | let loaded = store.load("does-not-exist").unwrap(); |
| 1124 | assert!(loaded.is_none()); |
| 1125 | } |
| 1126 | |
| 1127 | #[test] |
| 1128 | fn test_store_save_overwrites() { |
nothing calls this directly
no test coverage detected