just/tests/common.rs

17 lines
389 B
Rust
Raw Normal View History

pub(crate) use std::{
collections::BTreeMap,
2021-05-09 20:35:35 -07:00
env::{self, consts::EXE_SUFFIX},
fs,
io::Write,
iter,
path::Path,
process::{Command, Stdio},
str,
};
pub(crate) use executable_path::executable_path;
pub(crate) use just::unindent;
pub(crate) use libc::{EXIT_FAILURE, EXIT_SUCCESS};
pub(crate) use test_utilities::{assert_stdout, tempdir, tmptree};
pub(crate) use which::which;