aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_help.vim
blob: 26edc16107572f9d978727852a87f6b89c4d6d09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

" 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