Run a single wizard given the contents as a string.
(self, loaded)
| 34 | self._app_factory = app_factory |
| 35 | |
| 36 | def run(self, loaded): |
| 37 | """Run a single wizard given the contents as a string.""" |
| 38 | app = self._app_factory(loaded, self._session) |
| 39 | app.run() |
| 40 | print(app.traverser.get_output()) |
| 41 | |
| 42 | |
| 43 | class WizardApp(Application): |
nothing calls this directly
no test coverage detected