spv-dev team mailing list archive
-
spv-dev team
-
Mailing list archive
-
Message #00005
[Branch ~spv-dev/slidepresenterview/trunk] Rev 53: Remove unused code (FunctionalTestCase).
------------------------------------------------------------
revno: 53
committer: F.A. Bourbonnais <bouf10pub@xxxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-05-14 17:31:04 -0400
message:
Remove unused code (FunctionalTestCase).
modified:
slidepresenterview/tests/functional/__init__.py
--
lp:slidepresenterview
https://code.launchpad.net/~spv-dev/slidepresenterview/trunk
Your team SlidePresenterView Development Team is subscribed to branch lp:slidepresenterview.
To unsubscribe from this branch go to https://code.launchpad.net/~spv-dev/slidepresenterview/trunk/+edit-subscription
=== modified file 'slidepresenterview/tests/functional/__init__.py'
--- slidepresenterview/tests/functional/__init__.py 2010-01-02 00:34:36 +0000
+++ slidepresenterview/tests/functional/__init__.py 2010-05-14 21:31:04 +0000
@@ -22,22 +22,3 @@
"""
Functional tests
"""
-import unittest
-
-from PyQt4 import QtCore
-from PyQt4 import QtGui
-
-from slidepresenterview.utils import pyqt as pyqtutils
-from slidepresenterview.tests import get_resources_path
-
-# pylint: disable-msg=R0904
-class FunctionalTestCase(unittest.TestCase):
-
- def setUp(self):
- QtCore.qInstallMsgHandler(pyqtutils.msg_handler_no_message)
- self.app = QtGui.QApplication([])
-
-
- def tearDown(self):
- self.app.quit()
- QtCore.qInstallMsgHandler(None)