aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_messages.vim
diff options
context:
space:
mode:
Diffstat (limited to 'test/old/testdir/test_messages.vim')
-rw-r--r--test/old/testdir/test_messages.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/old/testdir/test_messages.vim b/test/old/testdir/test_messages.vim
index bfdebdac79..a20571807b 100644
--- a/test/old/testdir/test_messages.vim
+++ b/test/old/testdir/test_messages.vim
@@ -403,6 +403,21 @@ func Test_ask_yesno()
call StopVimInTerminal(buf)
endfunc
+func Test_null()
+ echom v:_null_list
+ echom v:_null_dict
+ echom v:_null_blob
+ echom v:_null_string
+ " Nvim doesn't have NULL functions
+ " echom test_null_function()
+ " Nvim doesn't have NULL partials
+ " echom test_null_partial()
+ if has('job')
+ echom test_null_job()
+ echom test_null_channel()
+ endif
+endfunc
+
func Test_mapping_at_hit_return_prompt()
nnoremap <C-B> :echo "hit ctrl-b"<CR>
call feedkeys(":ls\<CR>", "xt")