aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_632.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_632.py')
-rw-r--r--tests/QtGui/bug_632.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/QtGui/bug_632.py b/tests/QtGui/bug_632.py
new file mode 100644
index 000000000..e189393b2
--- /dev/null
+++ b/tests/QtGui/bug_632.py
@@ -0,0 +1,20 @@
+import sys
+from PySide.QtGui import QLineEdit, QApplication
+import unittest
+
+
+class Bug589(unittest.TestCase):
+ def testWrongSignature(self):
+ text = QLineEdit("PySide bug 632")
+ a = b = c = d = 0
+ self.assertRaises(TypeError, text.getTextMargins, (a, b, c, d))
+
+ def testTupleReturn(self):
+ text = QLineEdit("PySide bug 632")
+ text.setTextMargins(10, 20, 30, 40)
+ (a, b, c, d) = text.getTextMargins()
+ self.assert_((a, b, c, d), (10, 20, 30, 40))
+
+if __name__ == "__main__":
+ app = QApplication(sys.argv)
+ unittest.main()