(tmp_path)
| 94 | |
| 95 | |
| 96 | def test_golang_system(tmp_path): |
| 97 | _make_hello_world(tmp_path) |
| 98 | |
| 99 | ret = run_language(tmp_path, golang, 'golang-hello-world') |
| 100 | assert ret == (0, b'hello world\n') |
| 101 | |
| 102 | |
| 103 | def test_golang_default_version(tmp_path): |
no test coverage detected