()
| 399 | |
| 400 | #[test] |
| 401 | fn parse_contains() { |
| 402 | let pred = parse_predicate("$auth.roles CONTAINS 'admin'").unwrap(); |
| 403 | assert!(matches!(pred, RlsPredicate::Contains { .. })); |
| 404 | } |
| 405 | |
| 406 | #[test] |
| 407 | fn parse_intersects() { |
nothing calls this directly
no test coverage detected