stac-cli 0.1.0

Command line interface for stac-rs
Documentation
1
2
3
4
5
6
7
use assert_cmd::Command;

#[test]
fn help() {
    let mut command = Command::cargo_bin("stac").unwrap();
    command.arg("help").assert().success();
}