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 py.user
Recipients docs@python, py.user
Date 2013-07-24.18:48:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374691721.34.0.862188774104.issue18548@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/3/library/unittest.html#organizing-test-code
"""
def suite():
    suite = unittest.TestSuite()
    suite.addTest(WidgetTestCase('test_default_size'))
    suite.addTest(WidgetTestCase('test_resize'))
    return suite
"""
History
Date User Action Args
2013-07-24 18:48:41py.usersetrecipients: + py.user, docs@python
2013-07-24 18:48:41py.usersetmessageid: <1374691721.34.0.862188774104.issue18548@psf.upfronthosting.co.za>
2013-07-24 18:48:41py.userlinkissue18548 messages
2013-07-24 18:48:41py.usercreate