()
| 718 | |
| 719 | #[test] |
| 720 | fn test_has_content_root() { |
| 721 | let txn = MockTxn::new(); |
| 722 | let changes = MemoryChangeStore::new(); |
| 723 | |
| 724 | let result = has_content(&txn, &changes, Position::ROOT).unwrap(); |
| 725 | |
| 726 | assert!(!result); |
| 727 | } |
| 728 | |
| 729 | #[test] |
| 730 | fn test_has_content_empty_graph() { |
nothing calls this directly
no test coverage detected