(util: UtilFixture, capsys)
| 77 | |
| 78 | |
| 79 | def test_name(util: UtilFixture, capsys): |
| 80 | util.run_cli("-n", "cz_jira", "example") |
| 81 | out, _ = capsys.readouterr() |
| 82 | assert out.startswith("JRA") |
| 83 | |
| 84 | |
| 85 | @pytest.mark.usefixtures("tmp_git_project") |
nothing calls this directly
no test coverage detected
searching dependent graphs…