aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtMaemo5
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-06-07 14:43:45 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-06-07 16:57:11 -0300
commitab918abc1e103e0ca86939f7d057e8a44ac8a4ef (patch)
tree53c6f57d089dcf5e145d766b1ceef704714046d8 /tests/QtMaemo5
parent471486732b03cbb42b884158604a59d5a18e8a35 (diff)
Created new unittest model.
Separete unittest for module. Only run unittest for compiled modules. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/QtMaemo5')
-rw-r--r--tests/QtMaemo5/CMakeLists.txt2
-rw-r--r--tests/QtMaemo5/pickselector_test.py17
-rw-r--r--tests/QtMaemo5/qmaemo5import_test.py19
3 files changed, 38 insertions, 0 deletions
diff --git a/tests/QtMaemo5/CMakeLists.txt b/tests/QtMaemo5/CMakeLists.txt
new file mode 100644
index 000000000..73bb316f5
--- /dev/null
+++ b/tests/QtMaemo5/CMakeLists.txt
@@ -0,0 +1,2 @@
+PYSIDE_TEST(pickselector_test.py)
+PYSIDE_TEST(qmaemo5import_test.py)
diff --git a/tests/QtMaemo5/pickselector_test.py b/tests/QtMaemo5/pickselector_test.py
new file mode 100644
index 000000000..013c1d40b
--- /dev/null
+++ b/tests/QtMaemo5/pickselector_test.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+import unittest
+from PySide.QtMaemo5 import QMaemo5ListPickSelector, QMaemo5ValueButton
+
+from helper import UsesQApplication
+
+class PickSelectorTest(UsesQApplication):
+ def testOwnership(self):
+ pickselector = QMaemo5ListPickSelector()
+ button = QMaemo5ValueButton("test")
+ button.setPickSelector(pickselector)
+ del pickselector
+ self.assert_(button.pickSelector())
+
+if __name__ == '__main__':
+ unittest.main()
+
diff --git a/tests/QtMaemo5/qmaemo5import_test.py b/tests/QtMaemo5/qmaemo5import_test.py
new file mode 100644
index 000000000..a003f056a
--- /dev/null
+++ b/tests/QtMaemo5/qmaemo5import_test.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+import unittest
+from PySide.QtMaemo5 import *
+from PySide import QtGui
+
+from helper import UsesQApplication
+
+class QtMamo5Test(UsesQApplication):
+
+ def testObjectCreate(self):
+ bar = QMaemo5EditBar()
+ self.assert_(isinstance(bar, QMaemo5EditBar))
+
+ def testGui(self):
+ getattr(QtGui, 'QAbstractKineticScroller')
+
+if __name__ == '__main__':
+ unittest.main()
+