(tmp_path)
| 57 | |
| 58 | |
| 59 | def test_perl_additional_dependencies(tmp_path): |
| 60 | _make_local_repo(str(tmp_path)) |
| 61 | |
| 62 | ret, out = run_language( |
| 63 | tmp_path, |
| 64 | perl, |
| 65 | 'perltidy --version', |
| 66 | deps=('SHANCOCK/Perl-Tidy-20211029.tar.gz',), |
| 67 | ) |
| 68 | assert ret == 0 |
| 69 | assert out.startswith(b'This is perltidy, v20211029') |
nothing calls this directly
no test coverage detected