()
| 1141 | |
| 1142 | #[test] |
| 1143 | fn test_embedding_key_roundtrip() { |
| 1144 | let key = encode_embedding_key("memory/arch.md", 3); |
| 1145 | let (path, idx) = decode_embedding_key(&key).unwrap(); |
| 1146 | assert_eq!(path, "memory/arch.md"); |
| 1147 | assert_eq!(idx, 3); |
| 1148 | } |
| 1149 | |
| 1150 | #[test] |
| 1151 | fn test_embedding_key_zero_chunk() { |
nothing calls this directly
no test coverage detected