resolute 0.5.0

Compile-time-checked PostgreSQL queries with a pure-Rust wire protocol driver.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Compile-time error tests for derive macros using trybuild.
//!
//! These verify that derive macros produce helpful compile errors
//! for invalid inputs. No DATABASE_URL required.

#[test]
fn derive_compile_fail_tests() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/compile_fail_derive/*.rs");
}