(self)
| 83 | list(families)) |
| 84 | |
| 85 | def test_no_metadata(self): |
| 86 | families = text_string_to_metric_families("""a 1 |
| 87 | """) |
| 88 | metric_family = Metric("a", "", "untyped") |
| 89 | metric_family.add_sample("a", {}, 1) |
| 90 | self.assertEqualMetrics([metric_family], list(families)) |
| 91 | |
| 92 | def test_untyped(self): |
| 93 | # https://github.com/prometheus/client_python/issues/79 |
nothing calls this directly
no test coverage detected