view src/testdir/test_jumps.vim @ 13266:d73ebdbd8e35 v8.0.1507

patch 8.0.1507: timer test is a bit flaky commit https://github.com/vim/vim/commit/bfbea567d89fdaa08ed987fd80daa53a6ce399d1 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 12 21:31:35 2018 +0100 patch 8.0.1507: timer test is a bit flaky Problem: Timer test is a bit flaky. Solution: Add it to the list of flaky tests.
author Christian Brabandt <cb@256bit.org>
date Mon, 12 Feb 2018 21:45:05 +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