~osomon/ubuntu-ui-toolkit/downloadmanager

« back to all changes in this revision

Viewing changes to tests/unit/tst_components/tst_tab.qml

  • Committer: Zoltán Balogh
  • Date: 2013-05-06 13:11:21 UTC
  • mto: This revision was merged to the branch mainline in revision 483.
  • Revision ID: zoltan@bakter.hu-20130506131121-tve527q0rd66lnw3
rename demo to ubuntu-ui-toolkit-gallery and moved from the source root to the examples

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
     function test_iconSource() {
25
25
        compare(tab.iconSource,"","iconSource is not set by default")
26
 
        var newIcon = "../../../demos/small_avatar.png"
 
26
        var newIcon = "../../../examples/ubuntu-ui-toolkit-gallery/small_avatar.png"
27
27
        tab.iconSource = newIcon
28
28
        compare(tab.iconSource,Qt.resolvedUrl(newIcon),"Can set/get iconSource")
29
29
     }