grass/crates/lib/tests/warn.rs

12 lines
184 B
Rust
Raw Normal View History

#[macro_use]
mod macros;
test!(simple_warn, "@warn 2", "");
2023-01-18 01:37:59 +00:00
test!(
// todo: test stdout
warn_while_quiet,
"@warn 2;",
"",
grass::Options::default().quiet(true)
);