xref: /vim-8.2.3635/src/testdir/setup.vim (revision a06ecab7)
1" Common preparations for running tests.
2
3" Make sure 'runtimepath' does not include $HOME.
4set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
5
6" Only when the +eval feature is present.
7if 1
8  " Make sure $HOME does not get read or written.
9  let $HOME = '/does/not/exist'
10endif
11
12