test for unquoted string escape equality

This commit is contained in:
ConnorSkees 2020-04-05 20:08:48 -04:00
parent 355643f538
commit a8ab6b1675

View File

@ -122,6 +122,11 @@ test!(
"a {\n color: #{\"\\b\"};\n}\n", "a {\n color: #{\"\\b\"};\n}\n",
"a {\n color: \x0b;\n}\n" "a {\n color: \x0b;\n}\n"
); );
test!(
unquoted_escape_equality,
"a {\n color: foo == f\\6F\\6F;\n}\n",
"a {\n color: true;\n}\n"
);
// test!( // test!(
// quote_escape, // quote_escape,
// "a {\n color: quote(\\b);\n}\n", // "a {\n color: quote(\\b);\n}\n",