()
| 209 | |
| 210 | #[test] |
| 211 | fn test_unhashed_none() { |
| 212 | let (_dir, store) = temp_store(); |
| 213 | let change = make_test_change("no unhashed", b"data"); |
| 214 | |
| 215 | let hash = store.save_change(&change).unwrap(); |
| 216 | let unhashed = store.load_unhashed(&hash).unwrap(); |
| 217 | assert!(unhashed.is_none()); |
| 218 | } |
| 219 | |
| 220 | #[test] |
| 221 | fn test_unhashed_present() { |
nothing calls this directly
no test coverage detected