diff options
Diffstat (limited to 'tests/update_logic.rs')
-rw-r--r-- | tests/update_logic.rs | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/tests/update_logic.rs b/tests/update_logic.rs index 9e37b19..0c97ad5 100644 --- a/tests/update_logic.rs +++ b/tests/update_logic.rs @@ -1,19 +1,11 @@ use std::fs; -use std::path::Path; -use std::process::{Command, Output}; -use eyre::{Result, WrapErr}; +use eyre::WrapErr; use std::thread::sleep; use std::time::Duration; -type R = Result<()>; - -fn make(dir: impl AsRef<Path>) -> Result<Output> { - Command::new(env!("CARGO_BIN_EXE_makers")) - .current_dir(dir) - .output() - .wrap_err("") -} +mod utils; +use utils::{make, R}; #[test] fn basic_test() -> R { |