aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtUiTools/uiloader_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtUiTools/uiloader_test.py')
-rw-r--r--tests/QtUiTools/uiloader_test.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/QtUiTools/uiloader_test.py b/tests/QtUiTools/uiloader_test.py
new file mode 100644
index 000000000..fe3725ba1
--- /dev/null
+++ b/tests/QtUiTools/uiloader_test.py
@@ -0,0 +1,30 @@
+import unittest
+import os
+from helper import UsesQApplication
+
+from PySide.QtGui import *
+from PySide.QtUiTools import *
+
+def get_file_path():
+ for path in file_path:
+ if os.path.exists(path):
+ return path
+ return ""
+
+class QUioaderTeste(UsesQApplication):
+ def testLoadFile(self):
+ filePath = os.path.join(os.path.dirname(__file__), 'test.ui')
+ loader = QUiLoader()
+ parent = QWidget()
+ w = loader.load(filePath, parent)
+ self.assertNotEqual(w, None)
+
+ self.assertEqual(len(parent.children()), 1)
+
+ child = w.findChild(QWidget, "child_object")
+ self.assertNotEqual(child, None)
+ self.assertEqual(w.findChild(QWidget, "grandson_object"), child.findChild(QWidget, "grandson_object"))
+
+if __name__ == '__main__':
+ unittest.main()
+