diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-11 17:09:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-11 17:09:31 +0200 |
commit | 004a6781b3cf15ca5dd632c38cc09bb3b253d1f8 (patch) | |
tree | 7f71edb5284a22ff7e24b638303e0f5c1f5988d6 /src/testdir/test_terminal.vim | |
parent | d1caa941d876181aae0ebebc6ea954045bf0da24 (diff) | |
download | vim-git-004a6781b3cf15ca5dd632c38cc09bb3b253d1f8.tar.gz |
patch 8.2.0540: regexp and other code not testedv8.2.0540
Problem: Regexp and other code not tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5904)
Diffstat (limited to 'src/testdir/test_terminal.vim')
-rw-r--r-- | src/testdir/test_terminal.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index dc488cbeb..7b9277475 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -42,6 +42,7 @@ func Test_terminal_basic() call assert_match('%aR[^\n]*running]', execute('ls R')) call assert_notmatch('%[^\n]*running]', execute('ls F')) call assert_notmatch('%[^\n]*running]', execute('ls ?')) + call assert_fails('set modifiable', 'E946:') call StopShellInTerminal(buf) call TermWait(buf) |