summaryrefslogtreecommitdiff
path: root/runtime/doc/testing.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-31 21:07:14 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-31 21:07:14 +0200
commit5477506a9f01d40fad2e8f0555bc37adee30478f (patch)
treeafb8271b63c5813ea4f2dee83df994f33791fed5 /runtime/doc/testing.txt
parent0e6bfb9b2eb108d96a49ac4f8dc638c2eefeda2b (diff)
downloadvim-git-5477506a9f01d40fad2e8f0555bc37adee30478f.tar.gz
Update runtime files.
Diffstat (limited to 'runtime/doc/testing.txt')
-rw-r--r--runtime/doc/testing.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index 7692d804c..6fe6b8e5f 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -1,4 +1,4 @@
-*testing.txt* For Vim version 8.1. Last change: 2019 Jul 21
+*testing.txt* For Vim version 8.1. Last change: 2019 Jul 28
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -11,8 +11,8 @@ about writing tests in Vim script. This can be used for testing Vim itself
and for testing plugins.
1. Testing Vim |testing|
-2. Test functions |test-functions|
-3. Assert funtions |assert-functions|
+2. Test functions |test-functions-details|
+3. Assert functions |assert-functions-details|
==============================================================================
1. Testing Vim *testing*
@@ -36,7 +36,7 @@ without the |+eval| feature.
Find more information in the file src/testdir/README.txt.
==============================================================================
-2. Test functions *test-functions*
+2. Test functions *test-functions-details*
test_alloc_fail({id}, {countdown}, {repeat}) *test_alloc_fail()*
This is for testing: If the memory allocation with {id} is
@@ -198,7 +198,7 @@ test_settime({expr}) *test_settime()*
normal behavior is restored.
==============================================================================
-3. Assert functions *assert-functions*
+3. Assert functions *assert-functions-details*
assert_beeps({cmd}) *assert_beeps()*