()
| 5430 | |
| 5431 | #[test] |
| 5432 | fn test_lexer_basic_match_pattern() { |
| 5433 | let result = crate::ast::lexer::tokenize("MATCH (a:User)"); |
| 5434 | assert!(result.is_ok(), "Basic MATCH pattern should tokenize"); |
| 5435 | } |
| 5436 | |
| 5437 | #[test] |
| 5438 | fn test_lexer_simple_edge_pattern() { |
nothing calls this directly
no test coverage detected