vsp-router 1.0.0

Create virtual serial ports, connect them to physical serial ports, and create routes between them all.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use snapbox::cmd::{cargo_bin, Command};

#[test]
fn long() {
    Command::new(cargo_bin!("vsp-router"))
        .arg("--help")
        .assert()
        .success()
        .stderr_eq("")
        .stdout_matches_path("tests/snapshots/cli-help-long.txt");
}