view src/testdir/test_scriptnames.vim @ 28162:6e431b1c51d5 v8.2.4606

patch 8.2.4606: test fails because of changed error message Commit: https://github.com/vim/vim/commit/e18acb02bb58b2e07f3a52ce619752ba39c05ea2 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 21 20:40:35 2022 +0000 patch 8.2.4606: test fails because of changed error message Problem: Test fails because of changed error message. Solution: Update the expected error message
author Bram Moolenaar <Bram@vim.org>
date Mon, 21 Mar 2022 21:45:03 +0100
parents fa09602eae48
children 761631155a90
line wrap: on
line source

" Test for :scriptnames

func Test_scriptnames()
  call writefile(['let did_load_script = 123'], 'Xscripting')
  source Xscripting
  call assert_equal(123, g:did_load_script)

  let scripts = split(execute('scriptnames'), "\n")
  let last = scripts[-1]
  call assert_match('\<Xscripting\>', last)
  let lastnr = substitute(last, '\D*\(\d\+\):.*', '\1', '')
  exe 'script ' . lastnr
  call assert_equal('Xscripting', expand('%:t'))

  call assert_fails('script ' . (lastnr + 1), 'E474:')
  call assert_fails('script 0', 'E939:')

  new
  call setline(1, 'nothing')
  call assert_fails('script ' . lastnr, 'E37:')
  exe 'script! ' . lastnr
  call assert_equal('Xscripting', expand('%:t'))

  bwipe
  call delete('Xscripting')

  let msgs = execute('messages')
  scriptnames
  call assert_equal(msgs, execute('messages'))
endfunc

" vim: shiftwidth=2 sts=2 expandtab