This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chris.jerdonek
Recipients chris.jerdonek
Date 2012-09-21.21:31:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348263086.74.0.172285441847.issue16000@psf.upfronthosting.co.za>
In-reply-to
Content
This issue is to switch test_curses to using unittest.TestCase classes.

Currently, test_curses does not use unittest.TestCase.  It just calls a series of functions that exercise curses functionality and aborts if an exception occurs:

http://hg.python.org/cpython/file/3e677956eef4/Lib/test/test_curses.py#l314

Some consequences of this are that a single failure will cause remaining tests not to execute, there is no fine-grained reporting, and TestCase assertion methods are not available (e.g. assertRaisesRegexp()).
History
Date User Action Args
2012-09-21 21:31:27chris.jerdoneksetrecipients: + chris.jerdonek
2012-09-21 21:31:26chris.jerdoneksetmessageid: <1348263086.74.0.172285441847.issue16000@psf.upfronthosting.co.za>
2012-09-21 21:31:25chris.jerdoneklinkissue16000 messages
2012-09-21 21:31:24chris.jerdonekcreate