view src/testdir/test_preview.vim @ 15050:c7628d6bc0dc v8.1.0536

patch 8.1.0536: file time test fails when using NFS commit https://github.com/vim/vim/commit/addc156c38d442367854f71baee31f2eb003c699 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 18 12:25:09 2018 +0100 patch 8.1.0536: file time test fails when using NFS Problem: File time test fails when using NFS. Solution: Use three file times instead of localtim(). (James McCoy, closes #3618)
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Nov 2018 12:30:06 +0100
parents 5e36b2f825cb
children 068337e86133
line wrap: on
line source

" Tests for the preview window

func Test_Psearch()
  " this used to cause ml_get errors
  help
  let wincount = winnr('$')
  0f
  ps.
  call assert_equal(wincount + 1, winnr('$'))
  pclose
  call assert_equal(wincount, winnr('$'))
  bwipe
endfunc