portable-network-archive 0.32.2

Portable-Network-Archive cli
Documentation
1
2
3
4
5
6
7
8
9
10
use assert_cmd::cargo::cargo_bin_cmd;

/// Precondition: None.
/// Action: Run `pna bug-report`.
/// Expectation: Command exits successfully with exit code 0.
#[test]
fn bug_report_exits_successfully() {
    let mut cmd = cargo_bin_cmd!("pna");
    cmd.args(["bug-report"]).assert().success();
}