(util: UtilFixture, capsys)
| 84 | |
| 85 | @pytest.mark.usefixtures("tmp_git_project") |
| 86 | def test_name_default_value(util: UtilFixture, capsys): |
| 87 | util.run_cli("example") |
| 88 | out, _ = capsys.readouterr() |
| 89 | assert out.startswith("fix: correct minor typos in code") |
| 90 | |
| 91 | |
| 92 | def test_ls(util: UtilFixture, capsys): |
nothing calls this directly
no test coverage detected
searching dependent graphs…