summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-01 22:11:01 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-01 22:11:01 +0200
commite69f6d044c420d41dced9ba96a3b90f25788e39a (patch)
tree93ea671c8ff74e5ba89808a4561f36cdfc5f4b5c /runtime
parenta8c1770469504ae66c80bbdb03b6b31641215848 (diff)
patch 8.2.0493: Vim9: some error messages not testedv8.2.0493
Problem: Vim9: some error messages not tested. Solution: Add more tests. Fix uncovered bugs.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt1
-rw-r--r--runtime/doc/testing.txt4
2 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 74c3d1cfa0..3c0a1ae7f9 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -2861,6 +2861,7 @@ test_ignore_error({expr}) none ignore a specific error
test_null_blob() Blob null value for testing
test_null_channel() Channel null value for testing
test_null_dict() Dict null value for testing
+test_null_function() Funcref null value for testing
test_null_job() Job null value for testing
test_null_list() List null value for testing
test_null_partial() Funcref null value for testing
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index 82dc77ecbf..458aa7cbb0 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -106,6 +106,10 @@ test_null_dict() *test_null_dict()*
Return a |Dict| that is null. Only useful for testing.
+test_null_function() *test_null_function()*
+ Return a |FuncRef| that is null. Only useful for testing.
+
+
test_null_job() *test_null_job()*
Return a |Job| that is null. Only useful for testing.
{only available when compiled with the +job feature}