view src/testdir/test_version.vim @ 30537:720ac162fbd6 v9.0.0604

patch 9.0.0604: luacheckrc file is not recognized Commit: https://github.com/vim/vim/commit/49c311c9b18e18c05f93728d1f8a552923a18423 Author: ObserverOfTime <chronobserver@disroot.org> Date: Tue Sep 27 13:07:05 2022 +0100 patch 9.0.0604: luacheckrc file is not recognized Problem: Luacheckrc file is not recognized. Solution: Use lua filetype for luacheckrc. (closes https://github.com/vim/vim/issues/11236)
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Sep 2022 14:15:03 +0200
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