2020-02-28 18:27:32 -05:00
|
|
|
#![cfg(test)]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
|
|
|
test!(
|
2020-03-22 18:13:19 -04:00
|
|
|
#[ignore]
|
2020-02-28 18:27:32 -05:00
|
|
|
utf8_input,
|
|
|
|
"a {\n color: 🦆;\n}\n",
|
|
|
|
"@charset \"UTF-8\";\na {\n color: 🦆;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
2020-03-22 18:13:19 -04:00
|
|
|
#[ignore]
|
2020-02-28 18:27:32 -05:00
|
|
|
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"
|
|
|
|
);
|