We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdea369 commit b8e2b22Copy full SHA for b8e2b22
1 file changed
tests/cli_errors.rs
@@ -24,6 +24,13 @@ use std::{
24
};
25
use text_block_macros::text_block;
26
27
+#[cfg(windows)]
28
+fn test_path_join_absolute() {
29
+ let path = std::path::PathBuf::from(".").join("C:\\");
30
+ dbg!(path);
31
+ assert_eq!(path, std::path::PathBuf::from("C:\\"));
32
+}
33
+
34
fn stdio(command: Command) -> Command {
35
command
36
.with_stdin(Stdio::null())
0 commit comments