Since IntoOutputPredicate exists solely for conversion, test it under that scenario to ensure it works as expected.
(pred: I)
| 1183 | // Since IntoOutputPredicate exists solely for conversion, test it under that scenario to ensure |
| 1184 | // it works as expected. |
| 1185 | fn convert_output<I, P>(pred: I) -> P |
| 1186 | where |
| 1187 | I: IntoOutputPredicate<P>, |
| 1188 | P: Predicate<[u8]>, |
| 1189 | { |
| 1190 | pred.into_output() |
| 1191 | } |
| 1192 | |
| 1193 | #[test] |
| 1194 | fn into_output_from_pred() { |