From 05a053b65443b55787ae075fc4e99181673c2d56 Mon Sep 17 00:00:00 2001 From: aqua Date: Mon, 22 Aug 2022 10:06:00 +0300 Subject: Load plugins from AppLocalDataLocation by default --- src/settings/test/test_settings.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/settings/test/test_settings.cpp') diff --git a/src/settings/test/test_settings.cpp b/src/settings/test/test_settings.cpp index 72582bc7..2ca5ba1a 100644 --- a/src/settings/test/test_settings.cpp +++ b/src/settings/test/test_settings.cpp @@ -1,4 +1,13 @@ +/* ============================================================ + * The rekonq project + * ============================================================ + * SPDX-License-Identifier: GPL-3.0-only + * Copyright (C) 2022 aqua + * ============================================================ */ + #include +#include +#include #include #include @@ -23,6 +32,13 @@ TEST(settings, getFont) EXPECT_EQ(fixed.styleHint(), QFont::Monospace) << qUtf8Printable(fixed.toString()); } +TEST(settings, settingsPath) +{ + const auto path = QDir(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)).filePath("rekonqrc"); + EXPECT_FALSE(path.isEmpty()); + EXPECT_TRUE(path.endsWith("rekonqrc")); +} + TEST(settings, Settings) { Settings settings(settingsFile); -- cgit v1.2.1