(tmp_path)
| 85 | |
| 86 | |
| 87 | def test_ruby_additional_deps(tmp_path): |
| 88 | _make_local_repo(tmp_path) |
| 89 | |
| 90 | ret = run_language( |
| 91 | tmp_path, |
| 92 | ruby, |
| 93 | 'ruby -e', |
| 94 | args=('require "jmespath"',), |
| 95 | deps=('jmespath',), |
| 96 | ) |
| 97 | assert ret == (0, b'') |
| 98 | |
| 99 | |
| 100 | @xfailif_windows # pragma: win32 no cover |
nothing calls this directly
no test coverage detected