()
| 476 | |
| 477 | #[test] |
| 478 | fn into_path_from_bytes() { |
| 479 | let pred = convert_path(b"hello\n" as &[u8]); |
| 480 | let case = pred.find_case(false, path::Path::new("tests/fixture/hello.txt")); |
| 481 | println!("Failing case: {case:?}"); |
| 482 | assert!(case.is_none()); |
| 483 | } |
| 484 | |
| 485 | #[test] |
| 486 | fn into_path_from_str() { |
nothing calls this directly
no test coverage detected