view src/testdir/test_version.vim @ 23491:ac5ead954dcd v8.2.2288

patch 8.2.2288: Vim9: line break and comment not always skipped Commit: https://github.com/vim/vim/commit/5afd081cd3d0f3dfbc7f6b157a8caad0ce6394ee Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 3 18:33:13 2021 +0100 patch 8.2.2288: Vim9: line break and comment not always skipped Problem: Vim9: line break and comment not always skipped. Solution: Skip over white space and then line break more consistently. (closes #7610)
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Jan 2021 18:45:04 +0100
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