eggress-cli 1.0.3

CLI binary for the eggress multi-protocol proxy
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn test_cli_help() {
    assert_cmd::Command::cargo_bin("eggress")
        .unwrap()
        .arg("--help")
        .assert()
        .success()
        .stdout(predicates::str::contains("eggress"))
        .stdout(predicates::str::contains("--listen"))
        .stdout(predicates::str::contains("--remote"));
}