summaryrefslogtreecommitdiffstats
path: root/runtime/doc/testing.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-22 19:07:28 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-22 19:07:28 +0100
commit8ed04587d3cd53e29be20fde9c36e619ea7da4dc (patch)
tree6a66f8036d567d984190c19f5372eff719ff6477 /runtime/doc/testing.txt
parent0c6ceaf90389b41545d803458c4813013811c756 (diff)
patch 8.2.0299: Vim9: ISN_STORE with argument not testedv8.2.0299
Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void().
Diffstat (limited to 'runtime/doc/testing.txt')
-rw-r--r--runtime/doc/testing.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index f48984c9f2..e728e27426 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -123,6 +123,13 @@ test_null_string() *test_null_string()*
Return a |String| that is null. Only useful for testing.
+test_unknown() *test_unknown()*
+ Return a value with unknown type. Only useful for testing.
+
+test_void() *test_void()*
+ Return a value with void type. Only useful for testing.
+
+
test_option_not_set({name}) *test_option_not_set()*
Reset the flag that indicates option {name} was set. Thus it
looks like it still has the default value. Use like this: >