Irit Katriel <[email protected]> added the comment:
In verbose mode we do get output like the one in the code.google issue:
% cat tmp.py
import unittest
class TestStringMethods(unittest.TestCase):
@unittest.expectedFailure
def test_upper(self):
self.assertEqual(2, 2)
def test_lower(self):
return
if __name__ == '__main__':
unittest.main()
% ./python.exe -m tmp -v
test_lower (__main__.TestStringMethods) ... ok
test_upper (__main__.TestStringMethods) ... unexpected success
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue22815>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com