govctl 0.9.2

Project governance CLI for RFC, ADR, and Work Item management
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Error case tests - validation of invalid states.

mod common;

use common::{init_project, init_project_with_date, normalize_output, run_commands};
use std::fs;

macro_rules! assert_error_snapshot {
    ($value:expr) => {{
        let snapshot = $value;
        crate::assert_current_test_snapshot!("test_errors", snapshot);
    }};
}

mod error_tests;