()
| 5436 | |
| 5437 | #[test] |
| 5438 | fn test_lexer_simple_edge_pattern() { |
| 5439 | let result = crate::ast::lexer::tokenize("MATCH (a)-[:NEXT]->(b) RETURN a"); |
| 5440 | assert!(result.is_ok(), "Simple edge pattern should tokenize"); |
| 5441 | } |
| 5442 | |
| 5443 | #[test] |
| 5444 | fn test_lexer_complex_where_pattern() { |
nothing calls this directly
no test coverage detected