view src/testdir/test_jumps.vim @ 19803:71911b1dc3f9 v8.2.0458

patch 8.2.0458: missing feature check in test function Commit: https://github.com/vim/vim/commit/bea9023d4260349c130faf447aa8d4cbadeffab2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 26 22:09:52 2020 +0100 patch 8.2.0458: missing feature check in test function Problem: Missing feature check in test function. Solution: Add check commands.
author Bram Moolenaar <Bram@vim.org>
date Thu, 26 Mar 2020 22:15:04 +0100
parents 5ec4fbfe38c5
children 08940efa6b4e
line wrap: on
line source

func Test_empty_buffer()
  new
  insert
a
b
c
d
.
  call assert_equal(1, line("''"))
  bwipe!
endfunc