aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/test_module_template.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/test_module_template.py')
-rw-r--r--tests/QtGui/test_module_template.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/QtGui/test_module_template.py b/tests/QtGui/test_module_template.py
new file mode 100644
index 000000000..fb72a978d
--- /dev/null
+++ b/tests/QtGui/test_module_template.py
@@ -0,0 +1,9 @@
+from PySide.QtGui import *
+from PySide.QtCore import *
+
+class MyQObject(QObject):
+ pass
+
+class MyQWidget(QWidget):
+ value = 10
+