pliego-css 0.1.0-rc.2

Utility-first styling compiler for Rust and PliegoRS
Documentation
1
2
3
4
5
6
7
8
//! Compile-time contract tests for public macros.

#[test]
fn compile_time_diagnostics_follow_the_contract() {
    let tests = trybuild::TestCases::new();
    tests.compile_fail("tests/ui/fail/*.rs");
    tests.pass("tests/ui/pass/*.rs");
}