view src/testdir/test_version.vim @ 20887:5dd8e741060b v8.2.0995

patch 8.2.0995: insufficient testing for the readdir() sort option Commit: https://github.com/vim/vim/commit/e17f8817a1713a1ef20257c777a483b7ab57a841 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 17 20:30:44 2020 +0200 patch 8.2.0995: insufficient testing for the readdir() sort option Problem: Insufficient testing for the readdir() sort option. Solution: Add a few more tests. (Christian Brabandt, closes https://github.com/vim/vim/issues/6278)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Jun 2020 20:45:04 +0200
parents 4c9acbd6b3c7
children 08940efa6b4e
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