aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tst_qPrefFacebook.qml24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/tst_qPrefFacebook.qml b/tests/tst_qPrefFacebook.qml
new file mode 100644
index 000000000..a56c6e685
--- /dev/null
+++ b/tests/tst_qPrefFacebook.qml
@@ -0,0 +1,24 @@
+// SPDX-License-Identifier: GPL-2.0
+import QtQuick 2.6
+import QtTest 1.2
+import org.subsurfacedivelog.mobile 1.0
+
+TestCase {
+ name: "qPrefFacebook"
+
+ SsrfFacebookPrefs {
+ id: facebook
+ }
+
+ function test_variables() {
+ var x1 = facebook.access_token
+ facebook.access_token = "my token"
+ compare(facebook.access_token, "my token")
+ var x2 = facebook.album_id
+ facebook.album_id = "my album"
+ compare(facebook.album_id, "my album")
+ var x1 = facebook.user_id
+ facebook.user_id = "my user"
+ compare(facebook.user_id, "my user")
+ }
+}