(self)
| 5829 | class TestHeaderRegistry(TestEmailBase): |
| 5830 | # See issue gh-93010. |
| 5831 | def test_HeaderRegistry(self): |
| 5832 | reg = HeaderRegistry() |
| 5833 | a = reg('Content-Disposition', 'attachment; 0*00="foo"') |
| 5834 | self.assertIsInstance(a.defects[0], errors.InvalidHeaderDefect) |
| 5835 | |
| 5836 | if __name__ == '__main__': |
| 5837 | unittest.main() |
nothing calls this directly
no test coverage detected