view src/testdir/test_preview.vim @ 16613:850e13b71c1c v8.1.1309

patch 8.1.1309: test for Normal highlight fails on MS-Windows GUI commit https://github.com/vim/vim/commit/6b528fa062a5ac6bb5d8bd3abc26f32c65691d00 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 9 20:07:33 2019 +0200 patch 8.1.1309: test for Normal highlight fails on MS-Windows GUI Problem: Test for Normal highlight fails on MS-Windows GUI. Solution: Skip the test for MS-Windows GUI.
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 May 2019 20:15:05 +0200
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