(tmp_path)
| 127 | |
| 128 | |
| 129 | def test_local_golang_additional_deps(tmp_path): |
| 130 | _make_local_repo(str(tmp_path)) |
| 131 | |
| 132 | ret = run_language( |
| 133 | tmp_path, |
| 134 | golang, |
| 135 | 'hello', |
| 136 | deps=('golang.org/x/example/hello@latest',), |
| 137 | ) |
| 138 | |
| 139 | assert ret == (0, b'Hello, world!\n') |
| 140 | |
| 141 | |
| 142 | def test_golang_hook_still_works_when_gobin_is_set(tmp_path): |
nothing calls this directly
no test coverage detected