()
| 981 | |
| 982 | #[test_case] |
| 983 | fn path_to_path_buf() { |
| 984 | let path_buf = Path::new("foo.txt").to_path_buf(); |
| 985 | assert_eq!(path_buf, PathBuf::from("foo.txt")); |
| 986 | } |
| 987 | |
| 988 | #[test_case] |
| 989 | fn path_has_root() { |
nothing calls this directly
no test coverage detected