(tmp_path)
| 113 | |
| 114 | |
| 115 | def test_golang_versioned(tmp_path): |
| 116 | _make_local_repo(str(tmp_path)) |
| 117 | |
| 118 | ret, out = run_language( |
| 119 | tmp_path, |
| 120 | golang, |
| 121 | 'go version', |
| 122 | version='1.21.1', |
| 123 | ) |
| 124 | |
| 125 | assert ret == 0 |
| 126 | assert out.startswith(b'go version go1.21.1') |
| 127 | |
| 128 | |
| 129 | def test_local_golang_additional_deps(tmp_path): |
nothing calls this directly
no test coverage detected