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
8
9
10
11
12
13
14
//! Integration tests for the command line interface.
use assert_cmd::Command;

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

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