Dummy default processor for original tests implemented by duck-typing.
| 642 | |
| 643 | |
| 644 | class DuckProcessor: |
| 645 | """Dummy default processor for original tests implemented by duck-typing.""" |
| 646 | |
| 647 | def test_suffix(self, test): |
| 648 | return None |
| 649 | |
| 650 | @property |
| 651 | def name(self): |
| 652 | return None |
| 653 | |
| 654 | |
| 655 | class D8TestCase(TestCase): |