(*args)
| 159 | # ── CLI 测试 ─────────────────────────────────────────────────────────── |
| 160 | |
| 161 | def _cli(*args) -> subprocess.CompletedProcess: |
| 162 | return subprocess.run( |
| 163 | [sys.executable, str(ROOT / "cli.py"), *args], |
| 164 | capture_output=True, text=True, cwd=str(ROOT) |
| 165 | ) |
| 166 | |
| 167 | |
| 168 | class TestCLI: |
no outgoing calls
no test coverage detected