Rocket/contrib/db_pools/codegen/tests/ui-fail.rs

11 lines
252 B
Rust
Raw Normal View History

2021-07-18 20:14:13 +00:00
#[test]
fn ui() {
let path = match version_check::is_feature_flaggable() {
Some(true) => "ui-fail-nightly",
_ => "ui-fail-stable"
};
let t = trybuild::TestCases::new();
t.compile_fail(format!("tests/{}/*.rs", path));
}