(registry, MetricFamily, value, error)
| 488 | ({}, TypeError), |
| 489 | ]) |
| 490 | def test_basic_metric_families(registry, MetricFamily, value, error): |
| 491 | metric_family = MetricFamily(MetricFamily.__name__, 'help') |
| 492 | registry.register(Collector(metric_family, value)) |
| 493 | _expect_metric_exception(registry, error) |
| 494 | |
| 495 | |
| 496 | @pytest.mark.parametrize('count_value,sum_value,error', [ |
nothing calls this directly
no test coverage detected