35TEST(ScopedTempDir, CustomParent) {
36 ScopedTempDir root_dir;
37 std::string parent = root_dir.path() +
"/a/b/c";
40 ScopedTempDir dir(parent);
42 EXPECT_TRUE(IsDirectory(path));
43 EXPECT_EQ(path.substr(0, parent.size()), parent);
52 EXPECT_FALSE(IsDirectory(path));
53 EXPECT_TRUE(IsDirectory(parent));