view src/testdir/test_help.vim @ 11242:9612b93820a4 v8.0.0507

patch 8.0.0507: client-server tests fail when $DISPLAY is not set commit https://github.com/vim/vim/commit/a2845b8f5a3058c8c89699771ffd4d69513b097d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 25 15:20:06 2017 +0100 patch 8.0.0507: client-server tests fail when $DISPLAY is not set Problem: Client-server tests fail when $DISPLAY is not set. Solution: Check for E240 before running the test.
author Christian Brabandt <cb@256bit.org>
date Sat, 25 Mar 2017 15:30:04 +0100
parents 260100346566
children 55cf556d8ce1
line wrap: on
line source

" Tests for :help

func Test_help_restore_snapshot()
  help
  set buftype=
  help
  edit x
  help
  helpclose
endfunc

func Test_help_errors()
  call assert_fails('help doesnotexist', 'E149:')
  call assert_fails('help!', 'E478:')
endfunc