aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_635.py
blob: 5f483e51da1d4c780ebf3f91a45ff85216f34881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
''' Test bug 635: http://bugs.openbossa.org/show_bug.cgi?id=635'''

import unittest
from PySide.QtGui import QApplication, QToolBar, QIcon
import sys

class testQToolBar(unittest.TestCase):
    def callback(self):
        self._called = True

    def testAddAction(self):
        bar = QToolBar()
        self._called = False
        a = bar.addAction("act1", self.callback)
        a.trigger()
        self.assert_(self._called)

    def testAddActionWithIcon(self):
        bar = QToolBar()
        self._called = False
        icon = QIcon()
        a = bar.addAction(icon, "act1", self.callback)
        a.trigger()
        self.assert_(self._called)

if __name__ == '__main__':
    app = QApplication(sys.argv)
    unittest.main()