aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_source.vim
blob: 42ac0c4d0f517ec706fe427bfe6c01b2444c372e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
" Tests for the :source command.

func Test_source_sandbox()
  new
  call writefile(["Ohello\<Esc>"], 'Xsourcehello')
  source! Xsourcehello | echo
  call assert_equal('hello', getline(1))
  call assert_fails('sandbox source! Xsourcehello', 'E48:')
  bwipe!
endfunc