(self)
| 451 | self.assertEqual([metric_family], list(families)) |
| 452 | |
| 453 | def test_empty_metadata(self): |
| 454 | families = text_string_to_metric_families("""# HELP a |
| 455 | # UNIT a |
| 456 | # EOF |
| 457 | """) |
| 458 | metric_family = Metric("a", "", "untyped") |
| 459 | self.assertEqual([metric_family], list(families)) |
| 460 | |
| 461 | def test_untyped(self): |
| 462 | # https://github.com/prometheus/client_python/issues/79 |
nothing calls this directly
no test coverage detected