(self)
| 14 | super().__init__("no usage", prog="gunicorn_test") |
| 15 | |
| 16 | def do_load_config(self): |
| 17 | self.load_default_config() |
| 18 | self.cfg.set('reload', True) |
| 19 | self.cfg.set('reload_engine', 'poll') |
| 20 | |
| 21 | |
| 22 | class SyntaxErrorApp(ReloadApp): |
nothing calls this directly
no test coverage detected