19 lines
271 B
Rust
19 lines
271 B
Rust
|
#![cfg(test)]
|
||
|
|
||
|
#[macro_use]
|
||
|
mod macros;
|
||
|
|
||
|
test!(
|
||
|
style_following,
|
||
|
"@supports (a: b) {
|
||
|
a {
|
||
|
color: red;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: green;
|
||
|
}",
|
||
|
"@supports (a: b) {\n a {\n color: red;\n }\n}\na {\n color: green;\n}\n"
|
||
|
);
|