(self)
| 1024 | self.assertEqual({}, params) |
| 1025 | |
| 1026 | def test_inlonly(self): |
| 1027 | disptype, params = parse_content_disposition('inline') |
| 1028 | self.assertEqual('inline', disptype) |
| 1029 | self.assertEqual({}, params) |
| 1030 | |
| 1031 | def test_inlonlyquoted(self): |
| 1032 | with self.assertWarns(aiohttp.multipart.BadContentDispositionHeader): |
nothing calls this directly
no test coverage detected