From c440eccaef049b03a21022af6286e819259777b2 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Sat, 20 Feb 2010 16:12:53 -0300 Subject: Adds a simple unit test for QtGui.QPen instantiation. Reviewed by Lauro Moura --- tests/qtgui/qpen_test.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/qtgui/qpen_test.py 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() + -- cgit v1.2.3