(tmp_path)
| 68 | |
| 69 | |
| 70 | def test_ruby_hook_system(tmp_path): |
| 71 | assert ruby.get_default_version() == 'system' |
| 72 | |
| 73 | _setup_hello_world(tmp_path) |
| 74 | |
| 75 | ret = run_language(tmp_path, ruby, 'ruby_hook') |
| 76 | assert ret == (0, b'Hello world from a ruby hook\n') |
| 77 | |
| 78 | |
| 79 | def test_ruby_with_user_install_set(tmp_path): |
no test coverage detected