choreo 0.12.0

DSL for BDD type testing.
Documentation
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(
    name = "choreo",
    author = "Claes Adamsson @cladam",
    version,
    about = "choreo: A test runner for CLI tools, BDD-style",
    long_about = None)]
#[command(propagate_version = true)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Run a choreography test suite.
    Run {
        /// Path to the choreography test suite file.
        #[arg(short, long, default_value = "test.chor")]
        file: String,
        /// Enable verbose output for debugging.
        #[arg(long)]
        verbose: bool,
    },
    /// Create a new example test file.
    Init {
        /// Path to create the new test file.
        #[arg(default_value = "test.chor")]
        file: String,
    },
    /// Validate a choreography test suite file.
    /// Checks syntax and reports any issues without executing tests.
    Validate {
        /// Path to the choreography test suite file.
        #[arg(short, long, default_value = "test.chor")]
        file: String,
    },
    /// Lint a choreography test suite file.
    /// Provides suggestions for improving test definitions.
    Lint {
        /// Path to the choreography test suite file.
        #[arg(short, long, default_value = "test.chor")]
        file: String,
    },
    /// Update choreo to the latest version.
    #[command(name = "update", hide = true)] // Hidden from help
    Update,
}