()
| 1095 | |
| 1096 | #[test] |
| 1097 | fn test_edge_key_roundtrip() { |
| 1098 | let key = encode_edge_key("change:abc", "file:auth.rs", "MODIFIES"); |
| 1099 | let (from, to, kind) = decode_edge_key(&key).unwrap(); |
| 1100 | assert_eq!(from, "change:abc"); |
| 1101 | assert_eq!(to, "file:auth.rs"); |
| 1102 | assert_eq!(kind, "MODIFIES"); |
| 1103 | } |
| 1104 | |
| 1105 | #[test] |
| 1106 | fn test_tokenize_for_fts() { |
nothing calls this directly
no test coverage detected