(self)
| 603 | self.assert_is_prom(exp) |
| 604 | |
| 605 | def test_prom_utf8(self): |
| 606 | generator, content_type = choose_encoder(CONTENT_TYPE_PLAIN_1_0_0 + '; escaping=allow-utf-8') |
| 607 | assert content_type == CONTENT_TYPE_PLAIN_1_0_0 + '; escaping=allow-utf-8' |
| 608 | exp = generator(self.registry).decode('utf-8') |
| 609 | self.assert_is_utf8(exp) |
| 610 | self.assert_is_prom(exp) |
| 611 | |
| 612 | def test_prom_dots_escaping(self): |
| 613 | generator, content_type = choose_encoder(CONTENT_TYPE_PLAIN_1_0_0 + '; escaping=dots') |
nothing calls this directly
no test coverage detected