aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtCore/qfileinfo_test.py
blob: 996875539e4ffa2d92ebfef27df7112d4dae4eb8 (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 PySide2.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()