()
| 1076 | |
| 1077 | #[test] |
| 1078 | fn test_edge_key_roundtrip() { |
| 1079 | let key = encode_edge_key("change:abc", "file:auth.rs", "MODIFIES"); |
| 1080 | let (from, to, kind) = decode_edge_key(&key).unwrap(); |
| 1081 | assert_eq!(from, "change:abc"); |
| 1082 | assert_eq!(to, "file:auth.rs"); |
| 1083 | assert_eq!(kind, "MODIFIES"); |
| 1084 | } |
| 1085 | |
| 1086 | #[test] |
| 1087 | fn test_tokenize_for_fts() { |
nothing calls this directly
no test coverage detected