aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2011-08-30 18:14:42 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:49 -0300
commit6e6e7f528d59b27349ba1fd33f27d743592f8959 (patch)
tree6aa23a98593d23ce3a32b047ca9ae80f0951705b /tests/QtGui
parenta7e4ddb8cae99fc17ab5e15a0a32c019c3f3a494 (diff)
Created test for bug #979.
Diffstat (limited to 'tests/QtGui')
-rw-r--r--tests/QtGui/CMakeLists.txt1
-rw-r--r--tests/QtGui/bug_979.py9
-rw-r--r--tests/QtGui/import_test.py2
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/QtGui/CMakeLists.txt b/tests/QtGui/CMakeLists.txt
index 85e5988f7..9fb62b470 100644
--- a/tests/QtGui/CMakeLists.txt
+++ b/tests/QtGui/CMakeLists.txt
@@ -72,6 +72,7 @@ PYSIDE_TEST(bug_921.py)
PYSIDE_TEST(bug_941.py)
PYSIDE_TEST(bug_964.py)
PYSIDE_TEST(bug_972.py)
+PYSIDE_TEST(bug_979.py)
PYSIDE_TEST(bug_988.py)
PYSIDE_TEST(bug_991.py)
PYSIDE_TEST(customproxywidget_test.py)
diff --git a/tests/QtGui/bug_979.py b/tests/QtGui/bug_979.py
new file mode 100644
index 000000000..b780d3554
--- /dev/null
+++ b/tests/QtGui/bug_979.py
@@ -0,0 +1,9 @@
+from PySide.QtGui import QDialog
+from import_test import PysideImportTest2
+
+class PysideImportTest1(QDialog, PysideImportTest2):
+ pass
+
+if __name__ == '__main__':
+ quit()
+
diff --git a/tests/QtGui/import_test.py b/tests/QtGui/import_test.py
new file mode 100644
index 000000000..0b60241f0
--- /dev/null
+++ b/tests/QtGui/import_test.py
@@ -0,0 +1,2 @@
+class PysideImportTest2(object):
+ pass