ggen-cli-lib 26.5.19

CLI interface for ggen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Template list test
//!
//! This test validates the most basic CLI command: listing templates.
//! If this works, the core CLI command dispatch is functional.

use assert_cmd::Command;

#[test]
fn test_template_list() {
    Command::cargo_bin("ggen-cli-lib")
        .unwrap()
        .args(["template", "list"])
        .assert()
        .success();
}