(self)
| 26 | |
| 27 | class ASGITest(TestCase): |
| 28 | def setUp(self): |
| 29 | self.registry = CollectorRegistry() |
| 30 | self.captured_status = None |
| 31 | self.captured_headers = None |
| 32 | # Setup ASGI scope |
| 33 | self.scope = {} |
| 34 | setup_testing_defaults(self.scope) |
| 35 | self.communicator = None |
| 36 | |
| 37 | def tearDown(self): |
| 38 | if self.communicator: |
nothing calls this directly
no test coverage detected