()
| 695 | |
| 696 | #[test] |
| 697 | fn test_has_content_root() { |
| 698 | let txn = MockTxn::new(); |
| 699 | let changes = MemoryChangeStore::new(); |
| 700 | |
| 701 | let result = has_content(&txn, &changes, Position::ROOT).unwrap(); |
| 702 | |
| 703 | assert!(!result); |
| 704 | } |
| 705 | |
| 706 | #[test] |
| 707 | fn test_has_content_empty_graph() { |
nothing calls this directly
no test coverage detected