view src/testdir/test_version.vim @ 27928:ca7a207d83cd v8.2.4489

patch 8.2.4489: failing test for comparing v:null with number Commit: https://github.com/vim/vim/commit/c6e9d7063d275139d3c207435d293271c8b556ab Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 2 13:13:30 2022 +0000 patch 8.2.4489: failing test for comparing v:null with number Problem: Failing test for comparing v:null with number. Solution: Allow comparing v:null with number in legacy script. (Ken Takata, closes #9873) Also do this for float.
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Mar 2022 14:15:04 +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