hen 0.20.0

Run protocol-aware API request collections from the command line or through MCP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::process::Command;

#[test]
fn hen_binary_reports_version() {
    let output = Command::new(env!("CARGO_BIN_EXE_hen"))
        .arg("--version")
        .output()
        .expect("hen should execute");

    assert!(output.status.success());

    let stdout = String::from_utf8(output.stdout).expect("stdout should be utf-8");
    assert!(stdout.starts_with("hen "));
}