Message177908
| 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:45 | eric.araujo | set | recipients: + eric.araujo, brett.cannon, jcea, Arfrever, zach.ware, serhiy.storchaka |
| 2012-12-21 23:28:45 | eric.araujo | set | messageid: <1356132525.59.0.966507552724.issue16694@psf.upfronthosting.co.za> |
| 2012-12-21 23:28:45 | eric.araujo | link | issue16694 messages |
| 2012-12-21 23:28:45 | eric.araujo | create | |