summaryrefslogtreecommitdiffstats
path: root/src/testdir/README.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-10 13:51:09 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-10 13:51:09 +0100
commitcaa55b65c204946d160c1b743c5f8f3b506dc4d3 (patch)
tree3dd961455a51a51c70020597080d9014aa37366b /src/testdir/README.txt
parent68563937f58ea2dc31b58739336c383d2fd7e6cf (diff)
patch 8.0.0164: outdated and misplaced commentsv8.0.0164
Problem: Outdated and misplaced comments. Solution: Fix the comments.
Diffstat (limited to 'src/testdir/README.txt')
-rw-r--r--src/testdir/README.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/README.txt b/src/testdir/README.txt
index 640c61d1bd..6cdf12fffb 100644
--- a/src/testdir/README.txt
+++ b/src/testdir/README.txt
@@ -14,10 +14,10 @@ can. Use an old style test when it needs to run without the +eval feature.
TO ADD A NEW STYLE TEST:
1) Create a test_<subject>.vim file.
-2) Add test_<subject>.vim to NEW_TESTS in Make_all.mak in alphabetical order.
-3) Use make test_<subject>.res to run a single test in src/testdir/.
+2) Add test_<subject>.res to NEW_TESTS in Make_all.mak in alphabetical order.
+3) Also add an entry in src/Makefile.
+4) Use make test_<subject>.res to run a single test in src/testdir/.
Use make test_<subject> to run a single test in src/.
-4) Also add an entry in src/Makefile.
What you can use (see test_assert.vim for an example):
- Call assert_equal(), assert_true(), assert_false(), etc.