(util: UtilFixture, capsys)
| 90 | |
| 91 | |
| 92 | def test_ls(util: UtilFixture, capsys): |
| 93 | util.run_cli("-n", "cz_jira", "ls") |
| 94 | out, _ = capsys.readouterr() |
| 95 | |
| 96 | assert "cz_conventional_commits" in out |
| 97 | assert isinstance(out, str) |
| 98 | |
| 99 | |
| 100 | def test_arg_debug(util: UtilFixture): |
nothing calls this directly
no test coverage detected
searching dependent graphs…