view src/testdir/test_version.vim @ 26739:47ad45fb433a v8.2.3898

patch 8.2.3898: Vim9: not sufficient testing for variable initialization Commit: https://github.com/vim/vim/commit/fb9dcb080b5143d3021a8c1d6deaf143f2ca3a48 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 25 22:00:49 2021 +0000 patch 8.2.3898: Vim9: not sufficient testing for variable initialization Problem: Vim9: not sufficient testing for variable initialization. Solution: Add another test case.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 Dec 2021 23:15:03 +0100
parents dfdd973cf0c9
children
line wrap: on
line source

" Test :version Ex command

so check.vim
so shared.vim

func Test_version()
  " version should always return the same string.
  let v1 = execute('version')
  let v2 = execute('version')
  call assert_equal(v1, v2)

  call assert_match("^\n\nVIM - Vi IMproved .*", v1)
endfunc

func Test_version_redirect()
  CheckNotGui
  CheckCanRunGui
  CheckUnix

  call RunVim([], [], '--clean -g --version >Xversion 2>&1')
  call assert_match('Features included', readfile('Xversion')->join())

  call delete('Xversion')
endfunc

" vim: shiftwidth=2 sts=2 expandtab