aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/grandparent_method_test.py
blob: 3c1829377922c55e4f20d51da225651be7154f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

'''Tests for calling methods further than the direct parent'''

import unittest

from PySide.QtGui import QPushButton, QWidget

from helper import UsesQApplication

class Dummy(QPushButton):

    def show(self):
        QWidget.show(self)
        self.called = True

class GrandParentMethod(UsesQApplication):
    def testMethod(self):
        obj = Dummy()
        obj.show()
        self.assert_(obj.called)

if __name__ == '__main__':
    unittest.main()