3
0
Fork 0
mirror of https://github.com/Swatinem/rust-cache synced 2025-04-14 16:18:43 +00:00
rust-cache/tests/tests/trybuild.rs
Filippo Neysofu Costa 67c46e7159
Support for trybuild and similar macro testing tools (#168)
Signed-off-by: Filippo Costa <filippo@neysofu.me>
2023-09-12 19:32:03 +02:00

7 lines
172 B
Rust

#[test]
fn test_trybuild() {
let t = trybuild::TestCases::new();
t.pass("tests/trybuild/empty_main.rs");
t.compile_fail("tests/trybuild/fail_to_compile.rs");
}