From a8ab6b16756c70a6c1a68a29b1173980540e52ce Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Sun, 5 Apr 2020 20:08:48 -0400 Subject: [PATCH] test for unquoted string escape equality --- tests/str-escape.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/str-escape.rs b/tests/str-escape.rs index 175f327..254bfe2 100644 --- a/tests/str-escape.rs +++ b/tests/str-escape.rs @@ -122,6 +122,11 @@ test!( "a {\n color: #{\"\\b\"};\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!( // quote_escape, // "a {\n color: quote(\\b);\n}\n",