commit | 751ba616d1c47de2c273b269df06c36a7ed141a2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 22:26:44 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Mar 16 22:26:44 2017 +0100 |
tree | 22e882a85cde0eb682622a46e7b6622e875e3908 | |
parent | 0c0d4eca4dd6252f22ec39f2d561a5e8a68e9a4e [diff] [blame] |
patch 8.0.0470: not enough testing for help commands Problem: Not enough testing for help commands. Solution: Add a few more help tests. (Dominique Pelle, closes #1565)
diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim index ca095d0..5a35b69 100644 --- a/src/testdir/test_help.vim +++ b/src/testdir/test_help.vim
@@ -8,3 +8,8 @@ help helpclose endfunc + +func Test_help_errors() + call assert_fails('help doesnotexist', 'E149:') + call assert_fails('help!', 'E478:') +endfunc