novel-cli 0.17.0

A set of tools for downloading novels from the web, manipulating text, and generating EPUB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io::{self, Write};

use assert_cmd::cargo;
use testresult::TestResult;

#[test]
fn version() -> TestResult {
    let mut cmd = cargo::cargo_bin_cmd!();
    let output = cmd.arg("-V").output()?;
    cmd.assert().success();

    io::stderr().write_all(&output.stdout)?;

    Ok(())
}