(tmp_path)
| 99 | |
| 100 | @xfailif_windows # pragma: win32 no cover |
| 101 | def test_ruby_hook_default(tmp_path): |
| 102 | _setup_hello_world(tmp_path) |
| 103 | |
| 104 | out, ret = run_language(tmp_path, ruby, 'rbenv --help', version='default') |
| 105 | assert out == 0 |
| 106 | assert ret.startswith(b'Usage: rbenv ') |
| 107 | |
| 108 | |
| 109 | @xfailif_windows # pragma: win32 no cover |
nothing calls this directly
no test coverage detected