aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/qfileinfo_test.py
blob: 580b5a7d541036d82e1e2e7ee6aa8a2757093623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

import unittest

import os
import tempfile

from PySide.QtCore import QFile, QFileInfo

class QFileConstructor(unittest.TestCase):
    '''QFileInfo constructor with qfile'''

    def testBasic(self):
        '''QFileInfo(QFile)'''
        obj = QFileInfo(QFile())

if __name__ == '__main__':
    unittest.main()