aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/qstring_buffer_protocol_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtCore/qstring_buffer_protocol_test.py')
-rwxr-xr-xtests/QtCore/qstring_buffer_protocol_test.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/QtCore/qstring_buffer_protocol_test.py b/tests/QtCore/qstring_buffer_protocol_test.py
deleted file mode 100755
index f8475d093..000000000
--- a/tests/QtCore/qstring_buffer_protocol_test.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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()
-