view src/testdir/test_version.vim @ 22417:68115baaf9e4 v8.2.1757

patch 8.2.1757: Mac: default locale is lacking the encoding Commit: https://github.com/vim/vim/commit/a5fe91e6dc610bc823bc3201e2c88179989b13fb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 27 16:03:15 2020 +0200 patch 8.2.1757: Mac: default locale is lacking the encoding Problem: Mac: default locale is lacking the encoding. Solution: Add ".UTF-8 to the locale. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/7022)
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Sep 2020 16:15: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