From 344e62e7dbcf4341cf425909bfd298a1d4e48516 Mon Sep 17 00:00:00 2001 From: Mickey Rose Date: Tue, 15 Mar 2016 00:26:21 +0100 Subject: [PATCH] expressions_test: add empty string round-trip check --- test/unit/core/expressions_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit/core/expressions_test.cpp b/test/unit/core/expressions_test.cpp index 1b7d12faf..4075c4797 100644 --- a/test/unit/core/expressions_test.cpp +++ b/test/unit/core/expressions_test.cpp @@ -88,6 +88,7 @@ TEST_CASE("expressions") // integer TRY_CHECK(parse_and_dump("123") == "123"); // unicode + TRY_CHECK(parse_and_dump("''") == "''"); TRY_CHECK(parse_and_dump("'single-quoted string'") == "'single-quoted string'"); TRY_CHECK(parse_and_dump("\"double-quoted string\"") == "'double-quoted string'"); TRY_CHECK(parse_and_dump("'escaped \\' apostrophe'") == "'escaped \\' apostrophe'");