view src/testdir/test_version.vim @ 22547:159a637fe5b4 v8.2.1822

patch 8.2.1822: list test doesn't fail Commit: https://github.com/vim/vim/commit/f57497276bc616d3856eeff9824c080941faa51b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 10 16:42:39 2020 +0200 patch 8.2.1822: list test doesn't fail Problem: List test doesn't fail. Solution: Adjust the test for NULL list handling.
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Oct 2020 16:45:03 +0200
parents 08940efa6b4e
children dfdd973cf0c9
line wrap: on
line source

" Test :version Ex command

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

" vim: shiftwidth=2 sts=2 expandtab