(self, chunks)
| 3929 | class TestFeedParsers(TestEmailBase): |
| 3930 | |
| 3931 | def parse(self, chunks): |
| 3932 | feedparser = FeedParser() |
| 3933 | for chunk in chunks: |
| 3934 | feedparser.feed(chunk) |
| 3935 | return feedparser.close() |
| 3936 | |
| 3937 | def test_empty_header_name_handled(self): |
| 3938 | # Issue 19996 |
no test coverage detected