()
| 392 | |
| 393 | #[test] |
| 394 | fn parse_parenthesized() { |
| 395 | let pred = |
| 396 | parse_predicate("(user_id = $auth.id OR shared = true) AND status = 'active'").unwrap(); |
| 397 | assert!(matches!(pred, RlsPredicate::And(_))); |
| 398 | } |
| 399 | |
| 400 | #[test] |
| 401 | fn parse_contains() { |
nothing calls this directly
no test coverage detected