(self)
| 8 | |
| 9 | class WSGITest(TestCase): |
| 10 | def setUp(self): |
| 11 | self.registry = CollectorRegistry() |
| 12 | self.captured_status = None |
| 13 | self.captured_headers = None |
| 14 | # Setup WSGI environment |
| 15 | self.environ = {} |
| 16 | setup_testing_defaults(self.environ) |
| 17 | |
| 18 | def capture(self, status, header): |
| 19 | self.captured_status = status |
nothing calls this directly
no test coverage detected