(tmp_path)
| 44 | |
| 45 | |
| 46 | def test_run_empty(tmp_path): |
| 47 | with pytest.raises(FatalError) as excinfo: |
| 48 | run_language(tmp_path, haskell, 'example') |
| 49 | msg, = excinfo.value.args |
| 50 | assert msg == 'Expected .cabal files or additional_dependencies' |
nothing calls this directly
no test coverage detected