rovo 0.4.6

A drop-in replacement for axum::Router with effortless OpenAPI documentation
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn compile_fail_tests() {
    // Skip compile_fail tests on nightly as they produce different error messages
    if version_check::is_feature_flaggable().unwrap_or(false) {
        eprintln!("Skipping compile_fail tests on nightly Rust");
        return;
    }

    let t = trybuild::TestCases::new();
    t.compile_fail("tests/ui/*.rs");
}