[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2012-12-20 Thread anatoly techtonik
anatoly techtonik added the comment: What about? suite = unittest.makeSuite(SConfTestCase, 'test_') -- nosy: +techtonik ___ Python tracker ___

[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2008-05-11 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: The replacement is TestLoader().loadTestsFromTestCase(), and it's already in a prominent place in the docs: """ Instead of :func:`unittest.main`, there are other ways to run the tests with a finer level of control, less terse output, and no req

[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2008-04-30 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' <[EMAIL PROTECTED]>: -- nosy: +giampaolo.rodola __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2008-04-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +purcell __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscr

[issue2721] unittest.makeSuite undocumented and "obsolete" - but what to use instead?

2008-04-29 Thread Paul Winkler
New submission from Paul Winkler <[EMAIL PROTECTED]>: A comment in unittest.py says "these functions should be considered obsolete". But I've seen a lot of code in the wild still using unittest.makeSuite(MyTestCase)... in fact it's used frequently in the python standard library tests. And I don'