()
| 51 | |
| 52 | |
| 53 | def _source_command_count() -> int: |
| 54 | n = 0 |
| 55 | for name in list_plugins(): |
| 56 | plugin = load_plugin(name) |
| 57 | if plugin: |
| 58 | n += len(plugin.commands) |
| 59 | return n |
| 60 | |
| 61 | |
| 62 | # ── Per-harness output checks ──────────────────────────────────────────────── |
no test coverage detected