diff --git a/tests/responder_test.py b/tests/responder_test.py index 80729a21..fb961cb9 100644 --- a/tests/responder_test.py +++ b/tests/responder_test.py @@ -75,3 +75,9 @@ class BrokenModulesTest(unittest.TestCase): msg, = call[1] self.assertEquals(50, msg.handle) self.assertTrue(isinstance(msg.unpickle(), tuple)) + + +if __name__ == '__main__': + import logging + logging.basicConfig(level=logging.DEBUG) + unittest.main()