grass/tests/charset.rs
2020-08-11 20:22:24 -04:00

19 lines
363 B
Rust

#[macro_use]
mod macros;
test!(
utf8_input,
"a {\n color: 🦆;\n}\n",
"@charset \"UTF-8\";\na {\n color: 🦆;\n}\n"
);
test!(
ascii_charset_utf8,
"@charset \"UTF-8\";\na {\n color: red;\n}\n",
"a {\n color: red;\n}\n"
);
test!(
unknown_charset,
"@charset \"foo\";\na {\n color: red;\n}\n",
"a {\n color: red;\n}\n"
);