()
| 5442 | |
| 5443 | #[test] |
| 5444 | fn test_lexer_complex_where_pattern() { |
| 5445 | let query = "MATCH (start:TestNode)-[:CONNECTS_TO]->(end:TestNode) WHERE start.id = 1 RETURN count(end) as connected_count"; |
| 5446 | let result = crate::ast::lexer::tokenize(query); |
| 5447 | assert!(result.is_ok(), "Complex WHERE pattern should tokenize"); |
| 5448 | } |
| 5449 | |
| 5450 | #[test] |
| 5451 | fn test_lexer_variable_length_pattern() { |
nothing calls this directly
no test coverage detected