(self, chunks)
| 3861 | class TestFeedParsers(TestEmailBase): |
| 3862 | |
| 3863 | def parse(self, chunks): |
| 3864 | feedparser = FeedParser() |
| 3865 | for chunk in chunks: |
| 3866 | feedparser.feed(chunk) |
| 3867 | return feedparser.close() |
| 3868 | |
| 3869 | def test_empty_header_name_handled(self): |
| 3870 | # Issue 19996 |
no test coverage detected