real_time_note_taker 1.0.0

A terminal UI tool to take time stamped notes in real time.
Documentation
1
2
3
4
5
6
7
use assert_cmd::Command;

#[test]
fn fails_on_unknown_arg() {
    let mut cmd = Command::cargo_bin("rtnt").unwrap();
    cmd.arg("--unknown").assert().failure();
}