(self)
| 789 | self.assertIsNone(created_sample.exemplar) |
| 790 | |
| 791 | def test_gauge(self): |
| 792 | self.custom_collector(GaugeMetricFamily('g', 'help', value=1)) |
| 793 | self.assertEqual(1, self.registry.get_sample_value('g', {})) |
| 794 | |
| 795 | def test_gauge_labels(self): |
| 796 | cmf = GaugeMetricFamily('g', 'help', labels=['a']) |
nothing calls this directly
no test coverage detected