Case-insensitive edge-kind comparison, mirroring `QueryCallers`.
(kind: &str, expected: &str)
| 36 | |
| 37 | /// Case-insensitive edge-kind comparison, mirroring `QueryCallers`. |
| 38 | fn kind_is(kind: &str, expected: &str) -> bool { |
| 39 | kind.eq_ignore_ascii_case(expected) |
| 40 | } |
| 41 | |
| 42 | /// First 12 base32 chars — the short id used for `change:<short>` KG nodes. |
| 43 | fn short12(hash_b32: &str) -> String { |