(self)
| 1047 | self.assertEqual({'filename': 'Not an attachment!'}, params) |
| 1048 | |
| 1049 | def test_attonly(self): |
| 1050 | disptype, params = parse_content_disposition('attachment') |
| 1051 | self.assertEqual('attachment', disptype) |
| 1052 | self.assertEqual({}, params) |
| 1053 | |
| 1054 | def test_attonlyquoted(self): |
| 1055 | with self.assertWarns(aiohttp.multipart.BadContentDispositionHeader): |
nothing calls this directly
no test coverage detected