aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/qstring_buffer_protocol_test.py
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/QtCore/qstring_buffer_protocol_test.py
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/QtCore/qstring_buffer_protocol_test.py')
-rwxr-xr-xtests/QtCore/qstring_buffer_protocol_test.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/QtCore/qstring_buffer_protocol_test.py b/tests/QtCore/qstring_buffer_protocol_test.py
new file mode 100755
index 000000000..f8475d093
--- /dev/null
+++ b/tests/QtCore/qstring_buffer_protocol_test.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+'''Tests QString implementation of Python buffer protocol'''
+
+import unittest
+
+from os.path import isdir
+from PySide.QtCore import QString
+
+class QStringBufferProtocolTest(unittest.TestCase):
+ '''Tests QString implementation of Python buffer protocol'''
+
+ def testQStringBufferProtocol(self):
+ #Tests QString implementation of Python buffer protocol using the os.path.isdir
+ #function which an unicode object or other object implementing the Python buffer protocol
+ isdir(QString('/tmp'))
+
+if __name__ == '__main__':
+ unittest.main()
+