aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signals/signal_autoconnect_test.py
blob: d3e74910fdb4ec395717e2a9d041683f2989679d (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
29
30
31
# -*- coding: utf-8 -*-

import unittest

from PySide.QtCore import *
from PySide.QtGui import *

class MyObject(QWidget):
    def __init__(self, parent=None):
        QWidget.__init__(self, parent)
        self._method_called = False

    @Slot()
    def on_button_clicked(self):
        self._method_called = True


class AutoConnectionTest(unittest.TestCase):

    def testConnection(self):
        app = QApplication([])

        win = MyObject()
        btn = QPushButton("click", win)
        btn.setObjectName("button")
        QMetaObject.connectSlotsByName(win)
        btn.click()
        self.assert_(win._method_called)

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