From 2de4b9385917ff3d0616cf9967295d412f89297f Mon Sep 17 00:00:00 2001 From: Renato Filho Date: Tue, 13 Apr 2010 17:55:53 -0300 Subject: Removed unecessary inject code on QtHelp typesystem. Renamed unittest to standard name with test in the end of filename to be detected by test suite. Reviewer: Hugo Parente Lima , Luciano Wolf --- tests/qthelp/help_test.py | 14 ++++++++++++++ tests/qthelp/test_help.py | 14 -------------- 2 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 tests/qthelp/help_test.py delete mode 100644 tests/qthelp/test_help.py (limited to 'tests') diff --git a/tests/qthelp/help_test.py b/tests/qthelp/help_test.py new file mode 100644 index 000000000..e2ff532a6 --- /dev/null +++ b/tests/qthelp/help_test.py @@ -0,0 +1,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() diff --git a/tests/qthelp/test_help.py b/tests/qthelp/test_help.py deleted file mode 100644 index e2ff532a6..000000000 --- a/tests/qthelp/test_help.py +++ /dev/null @@ -1,14 +0,0 @@ - -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() -- cgit v1.2.3