aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-02-20 16:12:53 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2010-02-20 18:21:03 -0300
commitc440eccaef049b03a21022af6286e819259777b2 (patch)
treeff77f292fc30d642691362073a35f0b255feab47 /tests
parenteaaa562f9c52d924476b7f8635d5529891955271 (diff)
Adds a simple unit test for QtGui.QPen instantiation.
Reviewed by Lauro Moura <lauro.neto@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/qtgui/qpen_test.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/qtgui/qpen_test.py b/tests/qtgui/qpen_test.py
new file mode 100644
index 000000000..f9e9b1861
--- /dev/null
+++ b/tests/qtgui/qpen_test.py
@@ -0,0 +1,20 @@
+
+import unittest
+
+from PySide.QtCore import Qt
+from PySide.QtGui import QPen
+
+class QPenTest(unittest.TestCase):
+
+ def testCtorWithCreatedEnums(self):
+ '''A simple case of QPen creation using created enums.'''
+ width = 0
+ style = Qt.PenStyle(0)
+ cap = Qt.PenCapStyle(0)
+ join = Qt.PenJoinStyle(0)
+ pen = QPen(Qt.blue, width, style, cap, join)
+
+
+if __name__ == '__main__':
+ unittest.main()
+