(tmp_path)
| 39 | |
| 40 | |
| 41 | def test_run_dep(tmp_path): |
| 42 | result = run_language(tmp_path, haskell, 'hello', deps=['hello']) |
| 43 | assert result == (0, b'Hello, World!\n') |
| 44 | |
| 45 | |
| 46 | def test_run_empty(tmp_path): |
nothing calls this directly
no test coverage detected