- Create tests/cli directory with test modules for roasters, roasts, and tokens - Add helper functions for spawning test servers and running CLI commands - Add portpicker and tempfile dev dependencies for CLI tests - Tests demonstrate expected behavior but need CLI refinements to fully work: * CLI commands need --server flag or better env variable handling * create-token needs non-interactive mode for testing * Commands should support --json output format for easier parsing Infrastructure is ready for completion once CLI improvements are made Co-authored-by: jnsgruk <668505+jnsgruk@users.noreply.github.com>
4 lines
79 B
Rust
4 lines
79 B
Rust
pub mod helpers;
|
|
pub mod roasters_cli;
|
|
pub mod roasts_cli;
|
|
pub mod tokens_cli;
|