knope 0.22.4

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
use crate::helpers::TestCase;

#[test]
fn shell() {
    TestCase::new(file!())
        .env("AN_ENV_VAR", "a value")
        .run("shell-command");
}