summaryrefslogtreecommitdiffstats
path: root/tests/tst_qPrefAnimations.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tst_qPrefAnimations.qml')
-rw-r--r--tests/tst_qPrefAnimations.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/tst_qPrefAnimations.qml b/tests/tst_qPrefAnimations.qml
new file mode 100644
index 000000000..01e59fa42
--- /dev/null
+++ b/tests/tst_qPrefAnimations.qml
@@ -0,0 +1,19 @@
+// SPDX-License-Identifier: GPL-2.0
+import QtQuick 2.6
+import QtTest 1.2
+import org.subsurfacedivelog.mobile 1.0
+
+TestCase {
+ name: "qPrefAnimations"
+
+ SsrfAnimationsPrefs {
+ id: tst
+ }
+
+ function test_variables() {
+ var x1 = tst.animation_speed;
+ tst.animation_speed = 37
+ compare(tst.animation_speed, 37)
+ }
+
+}