view src/testdir/test_spell.vim @ 11099:613d9bcd7a52 v8.0.0437

patch 8.0.0437: packadd test does not fully work commit https://github.com/vim/vim/commit/644df41c44cbdfacdedbba55ef77a6c6031eccd8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 9 13:58:02 2017 +0100 patch 8.0.0437: packadd test does not fully work Problem: The packadd test does not create the symlink correctly and does not test the right thing. Solution: Create the directory and symlink correctly.
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Mar 2017 14:00:06 +0100
parents 2297aae8e127
children a2124e9bbb6a
line wrap: on
line source

" Test spell checking
" TODO: move test58 tests here

if !has('spell')
  finish
endif

func Test_wrap_search()
  new
  call setline(1, ['The', '', 'A plong line with two zpelling mistakes', '', 'End'])
  set spell wrapscan
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  normal ]s
  call assert_equal('zpelling', expand('<cword>'))
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  bwipe!
  set nospell
endfunc