Create tests for media queries

This commit is contained in:
ConnorSkees 2020-02-22 13:03:02 -05:00
parent 8c227290a0
commit a6cc86e4db

9
tests/media.rs Normal file
View File

@ -0,0 +1,9 @@
#![cfg(test)]
#[macro_use]
mod macros;
test!(
basic_toplevel,
"@media foo {\n a {\n color: red;\n }\n}\n"
);