()
| 1017 | |
| 1018 | #[test] |
| 1019 | fn test_resolve_path_absolute() { |
| 1020 | let init = Init::at_path("/absolute/path"); |
| 1021 | // This will fail the exists check but should return the path |
| 1022 | let resolved = init.resolve_path(); |
| 1023 | assert!(resolved.is_ok()); |
| 1024 | assert_eq!(resolved.unwrap(), PathBuf::from("/absolute/path")); |
| 1025 | } |
| 1026 | |
| 1027 | #[test] |
| 1028 | #[serial] |
nothing calls this directly
no test coverage detected