view src/testdir/test_version.vim @ 31857:a9d97517ac27 v9.0.1261

patch 9.0.1261: Elsa files are not recognized Commit: https://github.com/vim/vim/commit/2a99fe6c41efcd5d1eb47823e7e73cf391e230ba Author: Amaan Qureshi <amaanq12@gmail.com> Date: Sun Jan 29 17:50:14 2023 +0000 patch 9.0.1261: Elsa files are not recognized Problem: Elsa files are not recognized. Solution: Add a pattern for Elsa files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11908)
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Jan 2023 19:00:02 +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