summaryrefslogtreecommitdiffstats
path: root/tests/QtUiTools/bug_392.py
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-10-06 18:53:39 -0300
committerrenatofilho <renato.filho@openbossa.org>2010-10-07 12:18:03 -0300
commite75b82fdf6e9903e7264a1bc962ab7ed42c53bcd (patch)
tree6dac5ce544dc244dae7939ed96aeb0954d22766a /tests/QtUiTools/bug_392.py
parent6b8d262b4067bffd4e5a9611c07b862aa64d2538 (diff)
downloadpyside-e75b82fdf6e9903e7264a1bc962ab7ed42c53bcd.tar.gz
pyside-e75b82fdf6e9903e7264a1bc962ab7ed42c53bcd.tar.xz
pyside-e75b82fdf6e9903e7264a1bc962ab7ed42c53bcd.zip
Created unittest for widgets defined in Python and used during QUiLoader.loader function.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/QtUiTools/bug_392.py')
-rw-r--r--tests/QtUiTools/bug_392.py23
1 files changed, 20 insertions, 3 deletions
diff --git a/tests/QtUiTools/bug_392.py b/tests/QtUiTools/bug_392.py
index 5717d45..36b2f10 100644
--- a/tests/QtUiTools/bug_392.py
+++ b/tests/QtUiTools/bug_392.py
@@ -5,6 +5,13 @@ from helper import UsesQApplication
from PySide import QtCore, QtGui, QtDeclarative
from PySide.QtUiTools import QUiLoader
+class MyWidget(QtGui.QComboBox):
+ def __init__(self, parent=None):
+ QtGui.QComboBox.__init__(self, parent)
+
+ def isPython(self):
+ return True
+
class BugTest(UsesQApplication):
def testCase(self):
w = QtGui.QWidget()
@@ -12,7 +19,7 @@ class BugTest(UsesQApplication):
filePath = os.path.join(os.path.dirname(__file__), 'action.ui')
result = loader.load(filePath, w)
- self.assertEqual(type(result.statusbar.actionFoo), QtGui.QAction)
+ self.assert_(isinstance(result.statusbar.actionFoo, QtGui.QAction))
def testCustomWidgets(self):
w = QtGui.QWidget()
@@ -20,8 +27,18 @@ class BugTest(UsesQApplication):
filePath = os.path.join(os.path.dirname(__file__), 'customwidget.ui')
result = loader.load(filePath, w)
- self.assert_(type(result.declarativeView), QtDeclarative.QDeclarativeView)
- self.assert_(type(result.worldTimeClock), QtGui.QWidget)
+ self.assert_(isinstance(result.declarativeView, QtDeclarative.QDeclarativeView))
+ self.assert_(isinstance(result.worldTimeClock, QtGui.QWidget))
+
+ def testPythonCustomWidgets(self):
+ w = QtGui.QWidget()
+ loader = QUiLoader()
+ loader.registerCustomWidget(MyWidget)
+
+ filePath = os.path.join(os.path.dirname(__file__), 'pycustomwidget.ui')
+ result = loader.load(filePath, w)
+ self.assert_(isinstance(result.custom, MyWidget))
+ self.assert_(result.custom.isPython())
if __name__ == '__main__':