From d6ed39cbd1270592ce0bb6b838c7b9320672b35f Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 9 Jul 2012 19:34:51 +0300 Subject: [PATCH] Verify that a path initialized with an empty string is empty --- tests/path.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/path.cpp b/tests/path.cpp index 0811c49..6e88da3 100644 --- a/tests/path.cpp +++ b/tests/path.cpp @@ -39,6 +39,7 @@ PathTests::PathTests() void PathTests::empty() { EXPECT(FS::Path().empty()); + EXPECT(FS::Path("").empty()); EXPECT(!FS::Path(".").empty()); } -- 2.43.0