()
| 390 | |
| 391 | #[test] |
| 392 | fn test_stats_empty() { |
| 393 | let (_dir, store) = temp_store(); |
| 394 | let stats = store.stats().unwrap(); |
| 395 | |
| 396 | assert_eq!(stats.change_count, 0); |
| 397 | assert_eq!(stats.graph_section_count, 0); |
| 398 | assert_eq!(stats.semantic_section_count, 0); |
| 399 | assert_eq!(stats.content_chunk_count, 0); |
| 400 | assert_eq!(stats.change_chunk_mappings, 0); |
| 401 | assert_eq!(stats.unhashed_count, 0); |
| 402 | } |
| 403 | |
| 404 | #[test] |
| 405 | fn test_stats_after_save() { |
nothing calls this directly
no test coverage detected