(mocker: MockerFixture)
| 109 | |
| 110 | |
| 111 | def test_parse_known_args_not_set(mocker: MockerFixture) -> None: |
| 112 | mocker.patch.object(sys, "argv", ["a", "--help"]) |
| 113 | parser = ToxParser.base() |
| 114 | _, unknown = parser.parse_known_args(None) |
| 115 | assert unknown == ["--help"] |
| 116 | |
| 117 | |
| 118 | def test_parser_hint(capsys: CaptureFixture) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…