(in_git_dir, store)
| 61 | |
| 62 | @pytest.mark.skipif(os.name != 'nt', reason='windows feature') |
| 63 | def test_install_on_subst(in_git_dir, store): # pragma: posix no cover |
| 64 | assert not os.path.exists('Z:') |
| 65 | cmd_output('subst', 'Z:', str(in_git_dir)) |
| 66 | try: |
| 67 | with cwd('Z:'): |
| 68 | test_adjust_args_and_chdir_noop('Z:\\') |
| 69 | finally: |
| 70 | cmd_output('subst', '/d', 'Z:') |
| 71 | |
| 72 | |
| 73 | def test_adjust_args_and_chdir_non_relative_config(in_git_dir): |
nothing calls this directly
no test coverage detected