(self)
| 52 | class test_bugreport: |
| 53 | |
| 54 | def test_no_conn_driver_info(self): |
| 55 | self.app.connection = Mock() |
| 56 | conn = self.app.connection.return_value = Mock() |
| 57 | conn.transport = None |
| 58 | |
| 59 | bugreport(self.app) |
nothing calls this directly
no test coverage detected