(self)
| 589 | self.assert_is_openmetrics(exp) |
| 590 | |
| 591 | def test_prom_latest(self): |
| 592 | generator, content_type = choose_encoder(CONTENT_TYPE_LATEST) |
| 593 | assert content_type == CONTENT_TYPE_PLAIN_1_0_0 + '; escaping=underscores' |
| 594 | exp = generator(self.registry).decode('utf-8') |
| 595 | self.assert_is_escaped(exp) |
| 596 | self.assert_is_prom(exp) |
| 597 | |
| 598 | def test_prom_plain_1_0_0(self): |
| 599 | generator, content_type = choose_encoder(CONTENT_TYPE_PLAIN_1_0_0) |
nothing calls this directly
no test coverage detected