aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/bindableProperty.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickbehaviors/data/bindableProperty.qml')
-rw-r--r--tests/auto/quick/qquickbehaviors/data/bindableProperty.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickbehaviors/data/bindableProperty.qml b/tests/auto/quick/qquickbehaviors/data/bindableProperty.qml
new file mode 100644
index 0000000000..e4d76036aa
--- /dev/null
+++ b/tests/auto/quick/qquickbehaviors/data/bindableProperty.qml
@@ -0,0 +1,12 @@
+import QtQuick
+import test
+
+TestBindable {
+ property int targetValue: 0
+ prop: targetValue
+ property alias enableBehavior: behavior.enabled
+ Behavior on prop {
+ id: behavior
+ NumberAnimation {duration: 100}
+ }
+}