aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtHelp/help_test.py
blob: e2ff532a6f9ececcb97d655d5ad73a150ad7d07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

import unittest

from PySide.QtHelp import QHelpEngine

from helper import UsesQApplication

class QHelpEngineCreation(UsesQApplication):

    def testConstructor(self):
        helpEngine = QHelpEngine('mycollection.qch')

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