view src/testdir/test_scriptnames.vim @ 28251:9d90eef65a46 v8.2.4651

patch 8.2.4651: test fails because path differs Commit: https://github.com/vim/vim/commit/1712518f4808eb0bb59c8895aa0c17c3f04572a7 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 30 21:57:50 2022 +0100 patch 8.2.4651: test fails because path differs Problem: Test fails because path differs. Solution: Only compare the tail of the path.
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Mar 2022 23:00:03 +0200
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