1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[cfg(test)] mod tests { use super::*; #[test] fn test_cli_parsing() { let cli = Cli::try_parse_from([ "helix", "compile", "test.hlx", "-O3", "--compress", ]); assert!(cli.is_ok()); } }