()
| 473 | |
| 474 | #[test] |
| 475 | fn test_vertex_range_validation() { |
| 476 | let hash = Hash::of(b"change"); |
| 477 | let node = make_external_vertex(Some(hash), 10, 20); |
| 478 | |
| 479 | // Verify start < end for valid span |
| 480 | assert!(node.start < node.end); |
| 481 | } |
| 482 | |
| 483 | #[test] |
| 484 | fn test_empty_vertex() { |
nothing calls this directly
no test coverage detected