()
| 468 | |
| 469 | #[test] |
| 470 | fn into_path_from_pred() { |
| 471 | let pred = convert_path(predicate::eq(path::Path::new("hello.md"))); |
| 472 | let case = pred.find_case(false, path::Path::new("hello.md")); |
| 473 | println!("Failing case: {case:?}"); |
| 474 | assert!(case.is_none()); |
| 475 | } |
| 476 | |
| 477 | #[test] |
| 478 | fn into_path_from_bytes() { |
nothing calls this directly
no test coverage detected