grass/crates/lib/tests/warn.rs
2023-01-18 01:39:40 +00:00

12 lines
184 B
Rust

#[macro_use]
mod macros;
test!(simple_warn, "@warn 2", "");
test!(
// todo: test stdout
warn_while_quiet,
"@warn 2;",
"",
grass::Options::default().quiet(true)
);