(base_app)
| 3582 | |
| 3583 | |
| 3584 | def test_get_help_topics(base_app) -> None: |
| 3585 | # Verify that the base app has no additional help_foo methods |
| 3586 | custom_help = base_app.get_help_topics() |
| 3587 | assert len(custom_help) == 0 |
| 3588 | |
| 3589 | |
| 3590 | def test_get_help_topics_hidden() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…