diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-10-27 08:23:32 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-27 08:23:32 +0800 |
| commit | 23204c83ed5333811192513ed9f61d70682fbee5 (patch) | |
| tree | 85b80a2480c21f8bdb8f4354750cc7a665e9904a /src/nvim/testdir/test_excmd.vim | |
| parent | c86371258cb10a015cf151b84e04df4480569aff (diff) | |
| parent | c031547c8d39c5fc99c6f1fab31b50ba6fb32cbc (diff) | |
| download | rneovim-23204c83ed5333811192513ed9f61d70682fbee5.tar.gz rneovim-23204c83ed5333811192513ed9f61d70682fbee5.tar.bz2 rneovim-23204c83ed5333811192513ed9f61d70682fbee5.zip | |
Merge pull request #20822 from zeertzjq/vim-8.2.2837
vim-patch:8.2.{2837,3839}: various tests
Diffstat (limited to 'src/nvim/testdir/test_excmd.vim')
| -rw-r--r-- | src/nvim/testdir/test_excmd.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_excmd.vim b/src/nvim/testdir/test_excmd.vim index acf23fbc3c..04ab8e288f 100644 --- a/src/nvim/testdir/test_excmd.vim +++ b/src/nvim/testdir/test_excmd.vim @@ -683,6 +683,12 @@ func Test_sandbox() sandbox call Sandbox_tests() endfunc +func Test_command_not_implemented_E319() + if !has('mzscheme') + call assert_fails('mzscheme', 'E319:') + endif +endfunc + func Test_not_break_expression_register() call setreg('=', '1+1') if 0 |