From bb1b17ae694784f0d06d6bf360cd181d10645de0 Mon Sep 17 00:00:00 2001 From: Felix Ernst Date: Thu, 7 Jul 2022 13:32:28 +0000 Subject: [PATCH] Improve goActions test This merge request fixes up a little oversight by me. I will merge this as soon as the pipeline passes. ------------------ Some lines verified that nothing is selected when navigating to a folder that was not acted on yet. These verifications didn't test anything meaningful because the folder in question was empty. This commit adds a file and a folder to the test folder so that testing if nothing is selected means something. --- src/tests/dolphinmainwindowtest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/dolphinmainwindowtest.cpp b/src/tests/dolphinmainwindowtest.cpp index 448d5bd84b..ef972ff259 100644 --- a/src/tests/dolphinmainwindowtest.cpp +++ b/src/tests/dolphinmainwindowtest.cpp @@ -330,6 +330,8 @@ void DolphinMainWindowTest::testGoActions() QScopedPointer testDir{new TestDir()}; testDir->createDir("a"); testDir->createDir("b"); + testDir->createDir("b/b-1"); + testDir->createFile("b/b-2"); testDir->createDir("c"); QUrl childDirUrl(QDir::cleanPath(testDir->url().toString() + "/b")); m_mainWindow->openDirectories({ childDirUrl }, false); // Open "b" dir