aboutsummaryrefslogtreecommitdiff
path: root/crates/tools/tests/cli.rs
blob: 0bb5d15d8e183f892c1f7ec0e16ec8fe45dba0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extern crate tools;

use tools::{
    generate, Verify
};

#[test]
fn verify_template_generation() {
    if let Err(error) = generate(Verify) {
        panic!("{}. Please update it by running `cargo gen-kinds`", error);
    }
}