1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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")
|