dd3d65c5dd2a4436925169f29ca5f92cda4eb0a1
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / importJs.2.qml
1 import com.nokia.VersionedOnlyJsModule 9.0
2 import QtQuick 2.0
3
4 Item {
5     property bool test: false
6
7     Component.onCompleted: {
8         test = ((SomeAPI.greeting() == "Hey hey hey") &&
9                 (SomeAPI.major == 9) &&
10                 (SomeAPI.minor == 0))
11     }
12 }