diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-24 18:30:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-24 18:30:35 +0100 |
| commit | 38274051c066ff0a28582aae5c2edf47825d9f57 (patch) | |
| tree | 19fba05c7d751fd3ee9aaa20b6a65675a6001c3e /src/nvim/testdir/test_help.vim | |
| parent | a62ec4eb989f41ace8e6b7f085349a2bce964d68 (diff) | |
| parent | 7214d0bc846179a862e8d3061d00270a6caa0d7b (diff) | |
| download | rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.tar.gz rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.tar.bz2 rneovim-38274051c066ff0a28582aae5c2edf47825d9f57.zip | |
Merge pull request #6323 from justinmk/vimpatches
Diffstat (limited to 'src/nvim/testdir/test_help.vim')
| -rw-r--r-- | src/nvim/testdir/test_help.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_help.vim b/src/nvim/testdir/test_help.vim new file mode 100644 index 0000000000..26edc16107 --- /dev/null +++ b/src/nvim/testdir/test_help.vim @@ -0,0 +1,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 |