bootleg 0.2.0

A simple cli tool to copy to the clipboard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use assert_cmd::prelude::*;
use predicates::prelude::*;
use std::process::Command;

#[test]
fn print_help() {
    let mut cmd = Command::cargo_bin("bootleg").unwrap();
    cmd.arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Examples:"));
}