It seems that the unittest module has been changed a lot in Python 2.7
I have a test case:
class DemoTest(unittest.TestCase):
def test_foo(self):
"""Test foo"""
pass
The console output is:
Test foo ... ok
After upgrading to Python 2.7, the console output is now:
test_foo (testcase.demotest.DemoTest)
Test foo ... ok
The first line of description is useless. I want to hide it, but do not know how to.