bevycheck 0.1.2

Helpful bevy error messages by proc-macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    t.pass("tests/ui/01-okay.rs");
    t.compile_fail("tests/ui/02-commands.rs");
    t.compile_fail("tests/ui/03-arbitrary-type.rs");
    t.compile_fail("tests/ui/04-query-invalid.rs");
    t.compile_fail("tests/ui/05-too-many-params.rs");
    t.compile_fail("tests/ui/06-query-set.rs");
    t.compile_fail("tests/ui/07-query-with-added.rs");
}