()
| 405 | |
| 406 | #[test] |
| 407 | fn parse_intersects() { |
| 408 | let pred = parse_predicate("allowed_groups INTERSECTS $auth.groups").unwrap(); |
| 409 | assert!(matches!(pred, RlsPredicate::Intersects { .. })); |
| 410 | } |
| 411 | |
| 412 | #[test] |
| 413 | fn parse_not() { |
nothing calls this directly
no test coverage detected