(util: UtilFixture)
| 183 | |
| 184 | |
| 185 | def test_unknown_args_raises(util: UtilFixture): |
| 186 | with pytest.raises( |
| 187 | InvalidCommandArgumentError, match="Invalid commitizen arguments were found" |
| 188 | ): |
| 189 | util.run_cli("c", "-this_arg_is_not_supported") |
| 190 | |
| 191 | |
| 192 | def test_unknown_args_before_double_dash_raises(util: UtilFixture): |
nothing calls this directly
no test coverage detected
searching dependent graphs…