(tmp_path)
| 101 | |
| 102 | |
| 103 | def test_golang_default_version(tmp_path): |
| 104 | _make_hello_world(tmp_path) |
| 105 | |
| 106 | ret = run_language( |
| 107 | tmp_path, |
| 108 | golang, |
| 109 | 'golang-hello-world', |
| 110 | version=C.DEFAULT, |
| 111 | ) |
| 112 | assert ret == (0, b'hello world\n') |
| 113 | |
| 114 | |
| 115 | def test_golang_versioned(tmp_path): |
nothing calls this directly
no test coverage detected