(
tmp_path,
renv_lock_file,
description_file,
hello_world_file,
renv_folder,
)
| 215 | |
| 216 | |
| 217 | def test_r_hook( |
| 218 | tmp_path, |
| 219 | renv_lock_file, |
| 220 | description_file, |
| 221 | hello_world_file, |
| 222 | renv_folder, |
| 223 | ): |
| 224 | expected = (0, b'Hello, World, from R!\n') |
| 225 | assert run_language(tmp_path, r, 'Rscript hello-world.R') == expected |
| 226 | |
| 227 | |
| 228 | def test_r_inline(tmp_path): |
nothing calls this directly
no test coverage detected