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 eric.araujo
Recipients Arfrever, brett.cannon, eric.araujo, jcea, serhiy.storchaka, zach.ware
Date 2012-12-21.23:28:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356132525.59.0.966507552724.issue16694@psf.upfronthosting.co.za>
In-reply-to
Content
The base test class should not inherit from TestCase: it will be picked up by test discovery and then will break, as self.module will be None.

Typical usage:

class OperatorTestsMixin:
    module = None

class COperatorTests(OperatorTestsMixin, unittest.TestCase):
    module = _operator
History
Date User Action Args
2012-12-21 23:28:45eric.araujosetrecipients: + eric.araujo, brett.cannon, jcea, Arfrever, zach.ware, serhiy.storchaka
2012-12-21 23:28:45eric.araujosetmessageid: <1356132525.59.0.966507552724.issue16694@psf.upfronthosting.co.za>
2012-12-21 23:28:45eric.araujolinkissue16694 messages
2012-12-21 23:28:45eric.araujocreate