On Thu, Jul 8, 2010 at 7:56 AM, Michael Foord <[email protected]> wrote: > Using a class decorator to duplicate each _test_ into two test_* methods > sounds like a good approach.
Note that parameterised methods have a similar problem to parameterised modules - unittest results are reported in terms of "testmodule.testclass.testfunction", so proper attribution of results in the test output will require additional work. The separate subclasses approach doesn't share this issue, since it changes the value of the second item in accordance with the module under test. Cheers, Nick. -- Nick Coghlan | [email protected] | Brisbane, Australia _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
