add pi to min/max

This commit is contained in:
Daniel Bauer
2020-03-08 11:42:47 +01:00
parent cd7bea063f
commit 936cbe1c58
11 changed files with 10352 additions and 10306 deletions

13
tests/command.rs Normal file
View File

@@ -0,0 +1,13 @@
use std::process::Command;
use std::env;
pub fn get_command() -> Command {
let exe = env::current_exe().unwrap();
let path = exe.to_str().unwrap();
let cmd = if path.contains("release") {
"./target/release/wham"
} else {
"./target/debug/wham"
};
Command::new(cmd)
}