add tests and fixes

This commit is contained in:
nora 2024-08-26 21:40:49 +02:00
parent 688394cac9
commit a59bcb069d
10 changed files with 202 additions and 37 deletions

12
testing.rs Normal file
View file

@ -0,0 +1,12 @@
use std::process::{Command, Stdio};
fn main() {
let mut cmd = Command::new("fish");
cmd.stderr(Stdio::piped());
cmd.stdout(Stdio::piped());
cmd.stdin(Stdio::piped());
let mut child = cmd.spawn().unwrap();
child.wait().unwrap();
}