1
0
Fork 0

Adding upstream version 4.6.0+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-21 10:42:01 +02:00
parent f3ad83a1a5
commit 7791e7adfd
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
230 changed files with 24945 additions and 0 deletions

View file

@ -0,0 +1,26 @@
import sys
import pytest
from pytest_mock import MockerFixture
from commitizen import cli, commands
from tests.utils import skip_below_py_3_10
def test_list_cz(config, mocker: MockerFixture):
write_mock = mocker.patch("commitizen.out.write")
commands.ListCz(config)()
write_mock.assert_called_once()
@skip_below_py_3_10
def test_ls_command_shows_description_when_use_help_option(
mocker: MockerFixture, capsys, file_regression
):
testargs = ["cz", "ls", "--help"]
mocker.patch.object(sys, "argv", testargs)
with pytest.raises(SystemExit):
cli.main()
out, _ = capsys.readouterr()
file_regression.check(out, extension=".txt")