1
1
mirror of https://github.com/casey/just.git synced 2024-09-17 17:09:39 +03:00
just/tests/tempdir.rs
2024-06-05 19:03:14 +00:00

53 lines
824 B
Rust

use super::*;
pub(crate) fn tempdir() -> TempDir {
let mut builder = tempfile::Builder::new();
builder.prefix("just-test-tempdir");
if let Some(runtime_dir) = dirs::runtime_dir() {
let path = runtime_dir.join("just");
fs::create_dir_all(&path).unwrap();
builder.tempdir_in(path)
} else {
builder.tempdir()
}
.expect("failed to create temporary directory")
}
#[test]
fn test_tempdir_is_set() {
Test::new()
.justfile(
"
set tempdir := '.'
foo:
#!/usr/bin/env bash
cat just*/foo
",
)
.shell(false)
.tree(tree! {
foo: {
}
})
.current_dir("foo")
.stdout(if cfg!(windows) {
"
cat just*/foo
"
} else {
"
#!/usr/bin/env bash
cat just*/foo
"
})
.run();
}