(self)
| 141 | metrics._use_created = _get_use_created() |
| 142 | |
| 143 | def tearDown(self): |
| 144 | os.environ.pop('PROMETHEUS_DISABLE_CREATED_SERIES', None) |
| 145 | metrics._use_created = _get_use_created() |
| 146 | |
| 147 | def test_counter(self): |
| 148 | counter = Counter('c_total', 'help', registry=self.registry) |
nothing calls this directly
no test coverage detected