summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/testpreferences.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp
index 652cf6f1d..3148bffea 100644
--- a/tests/testpreferences.cpp
+++ b/tests/testpreferences.cpp
@@ -30,6 +30,16 @@ void TestPreferences::testPreferences()
TEST(pref->cloud_storage->baseUrl(), QStringLiteral("test_one"));
pref->cloud_storage->setBaseUrl("test_two");
TEST(pref->cloud_storage->baseUrl(), QStringLiteral("test_two"));
+
+ pref->cloud_storage->setEmail("tomaz@subsurface.com");
+ TEST(pref->cloud_storage->email(), QStringLiteral("tomaz@subsurface.com"));
+ pref->cloud_storage->setEmail("tomaz@gmail.com");
+ TEST(pref->cloud_storage->email(), QStringLiteral("tomaz@gmail.com"));
+
+ pref->cloud_storage->setGitLocalOnly(true);
+ TEST(pref->cloud_storage->gitLocalOnly(), true);
+ pref->cloud_storage->setGitLocalOnly(false);
+ TEST(pref->cloud_storage->gitLocalOnly(), false);
}
QTEST_MAIN(TestPreferences)