()
| 723 | |
| 724 | |
| 725 | def test_deprecated_notifier(): |
| 726 | app = DeprecatedApp() |
| 727 | assert not app.override_called |
| 728 | assert not app.parent_called |
| 729 | app.config = Config({"A": {"b": "c"}}) |
| 730 | assert app.override_called |
| 731 | assert app.parent_called |
| 732 | |
| 733 | |
| 734 | def test_help_output(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…