summaryrefslogtreecommitdiffstats
path: root/tests/tst_qPrefAnimations.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-14 08:15:23 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-14 08:16:14 -0700
commitdc22747cb02caff55da809da234fd7ad1cf23f27 (patch)
treee9ac9a875c841974b10baa27fe58c41dfbbf1133 /tests/tst_qPrefAnimations.qml
parente834874a7a6f8e37fade28bf20640b8d0815373b (diff)
parentf63217495d27c77b2f7f866caec568a19ee9543d (diff)
downloadsubsurface-dc22747cb02caff55da809da234fd7ad1cf23f27.tar.gz
Merge branch 'qPrefAnimations' of https://github.com/janiversen/subsurface
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
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)
+ }
+
+}