mirror of
https://github.com/Noratrieb/cluelessh.git
synced 2026-01-14 16:35:06 +01:00
add tests and fixes
This commit is contained in:
parent
688394cac9
commit
a59bcb069d
10 changed files with 202 additions and 37 deletions
12
testing.rs
Normal file
12
testing.rs
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue