stdout should be captured when --version is passed.
(self)
| 39 | assert stdout != "" |
| 40 | |
| 41 | def test_capture_version(self) -> None: |
| 42 | """stdout should be captured when --version is passed.""" |
| 43 | stdout, _, _ = mypy.api.run(["--version"]) |
| 44 | assert isinstance(stdout, str) |
| 45 | assert stdout != "" |
nothing calls this directly
no test coverage detected