aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2011-04-26 17:58:45 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:15 -0300
commitadac79f08bff1e299eb61a2341383350602b4505 (patch)
treef1b225378269662dd69dbb18e571901d452733be /tests
parent74dc26aa7180f7df26c5b975d7cd6a0443d04d78 (diff)
Fix bugs 776 and 777
Bug 776 - "Operator "QPolygon::operator<<(QPoint)" missing" Bug 777 - "Operator "QPolygon::operator<<(QVector<QPoint>)" missing"
Diffstat (limited to 'tests')
-rw-r--r--tests/QtGui/qpolygonf_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/QtGui/qpolygonf_test.py b/tests/QtGui/qpolygonf_test.py
index 83e643c36..f842eb43b 100644
--- a/tests/QtGui/qpolygonf_test.py
+++ b/tests/QtGui/qpolygonf_test.py
@@ -18,5 +18,11 @@ class QPolygonFNotIterableTest(unittest.TestCase):
self.assertEqual(int(point.y()), i)
i += 1;
+ def testPolygonShiftOperators(self):
+ p = QPolygon()
+ self.assertEqual(len(p), 0)
+ p << QPoint(10, 20) << QPoint(20, 30) << [QPoint(20, 30), QPoint(40, 50)]
+ self.assertEqual(len(p), 4)
+
if __name__ == '__main__':
unittest.main()