cargo-make 0.2.11

Rust task runner and build tool.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

#[test]
fn run_empty_task() {
    run("bad.toml", "empty", "error");
}

#[test]
fn run_file_and_task() {
    run("./examples/dependencies.toml", "A", "error");
}

#[test]
#[should_panic]
fn run_cli_panic() {
    run_cli();
}