(registry, count_value, sum_value, error)
| 504 | (0, {}, TypeError), |
| 505 | ]) |
| 506 | def test_summary_metric_family(registry, count_value, sum_value, error): |
| 507 | metric_family = core.SummaryMetricFamily('summary', 'help') |
| 508 | registry.register(Collector(metric_family, count_value, sum_value)) |
| 509 | _expect_metric_exception(registry, error) |
| 510 | |
| 511 | |
| 512 | @pytest.mark.parametrize('MetricFamily', [ |
nothing calls this directly
no test coverage detected