(self)
| 760 | self.assertEqual(1, self.registry.get_sample_value('c_total', {})) |
| 761 | |
| 762 | def test_counter_utf8(self): |
| 763 | self.custom_collector(CounterMetricFamily('my.metric', 'help', value=1)) |
| 764 | self.assertEqual(1, self.registry.get_sample_value('my.metric_total', {})) |
| 765 | |
| 766 | def test_counter_total(self): |
| 767 | self.custom_collector(CounterMetricFamily('c_total', 'help', value=1)) |
nothing calls this directly
no test coverage detected