(self, output, metric_name, help_text, increments)
| 90 | self.assertIn(metric_name + "_total " + str(increments) + ".0\n", output) |
| 91 | |
| 92 | def assert_not_metrics(self, output, metric_name, help_text, increments): |
| 93 | self.assertNotIn("# HELP " + metric_name + "_total " + help_text + "\n", output) |
| 94 | self.assertNotIn("# TYPE " + metric_name + "_total counter\n", output) |
| 95 | self.assertNotIn(metric_name + "_total " + str(increments) + ".0\n", output) |
| 96 | |
| 97 | def assert_outputs(self, outputs, metric_name, help_text, increments, compressed): |
| 98 | self.assertEqual(len(outputs), 2) |
no outgoing calls
no test coverage detected