aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-27 08:22:07 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-27 15:30:14 +0200
commit70ffe0b5136cfce75c94fa09cd6070b7270f684d (patch)
tree4b22b5d9d7b055340a723d41e2f88fcac212f143 /sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
parent8245dd6356dbb0124a7477b16f19e5f031074f85 (diff)
Tests: Use per-class imports
Change-Id: I6dac1f54152fecab7af6831bc3c813a016408aae Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py29
1 files changed, 15 insertions, 14 deletions
diff --git a/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py b/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
index b192a5180..45a3a608a 100644
--- a/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
+++ b/sources/pyside6/tests/pysidetest/mixin_signal_slots_test.py
@@ -42,57 +42,58 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
from init_paths import init_test_paths
init_test_paths(False)
-from PySide6 import QtCore
+from PySide6.QtCore import QObject, Signal, Slot
+
class Mixin(object):
- mixinSignal = QtCore.Signal()
+ mixinSignal = Signal()
def __init__(self, *args, **kwargs):
super(Mixin,self).__init__(*args, **kwargs)
class MixinTwo(Mixin):
- mixinTwoSignal = QtCore.Signal()
+ mixinTwoSignal = Signal()
def __init__(self, *args, **kwargs):
super(MixinTwo,self).__init__(*args, **kwargs)
self.mixinTwoSlotCalled = False
- @QtCore.Slot()
+ @Slot()
def mixinTwoSlot(self):
self.mixinTwoSlotCalled = True
class MixinThree(object):
- mixinThreeSignal = QtCore.Signal()
+ mixinThreeSignal = Signal()
def __init__(self, *args, **kwargs):
super(MixinThree,self).__init__(*args, **kwargs)
self.mixinThreeSlotCalled = False
- @QtCore.Slot()
+ @Slot()
def mixinThreeSlot(self):
self.mixinThreeSlotCalled = True
-class Derived(Mixin, QtCore.QObject):
- derivedSignal = QtCore.Signal(str)
+class Derived(Mixin, QObject):
+ derivedSignal = Signal(str)
def __init__(self):
super(Derived,self).__init__()
self.derivedSlotCalled = False
self.derivedSlotString = ''
- @QtCore.Slot(str)
+ @Slot(str)
def derivedSlot(self, theString):
self.derivedSlotCalled = True
self.derivedSlotString = theString
-class MultipleDerived(MixinTwo, MixinThree, Mixin, QtCore.QObject):
- derivedSignal = QtCore.Signal(str)
+class MultipleDerived(MixinTwo, MixinThree, Mixin, QObject):
+ derivedSignal = Signal(str)
def __init__(self):
super(MultipleDerived,self).__init__()
self.derivedSlotCalled = False
self.derivedSlotString = ''
- @QtCore.Slot(str)
+ @Slot(str)
def derivedSlot(self, theString):
self.derivedSlotCalled = True
self.derivedSlotString = theString
@@ -120,7 +121,7 @@ class MixinTest(unittest.TestCase):
# Check derivedSignal emission after mixingSignal connection
self.outsideSlotCalled = False
- @QtCore.Slot()
+ @Slot()
def outsideSlot():
self.outsideSlotCalled = True
@@ -169,7 +170,7 @@ class MixinTest(unittest.TestCase):
# Check derivedSignal emission after mixinThreeSignal connection
self.outsideSlotCalled = False
- @QtCore.Slot()
+ @Slot()
def outsideSlot():
self.outsideSlotCalled = True