()
| 1251 | |
| 1252 | #[test] |
| 1253 | fn test_display_in() { |
| 1254 | let pb = PredicateBuilder::new(&test_fields()); |
| 1255 | let p = pb.is_in("id", vec![Datum::Int(1), Datum::Int(2)]).unwrap(); |
| 1256 | assert_eq!(format!("{p}"), "id IN (1, 2)"); |
| 1257 | } |
| 1258 | |
| 1259 | #[test] |
| 1260 | fn test_display_compound() { |
nothing calls this directly
no test coverage detected