stdout should be captured when --help is passed.
(self)
| 33 | assert stderr != "" |
| 34 | |
| 35 | def test_capture_help(self) -> None: |
| 36 | """stdout should be captured when --help is passed.""" |
| 37 | stdout, _, _ = mypy.api.run(["--help"]) |
| 38 | assert isinstance(stdout, str) |
| 39 | assert stdout != "" |
| 40 | |
| 41 | def test_capture_version(self) -> None: |
| 42 | """stdout should be captured when --version is passed.""" |
nothing calls this directly
no test coverage detected