comparison src/testdir/test_assert.vim @ 14053:d6866c54a311 v8.1.0044

patch 8.1.0044: if a test function exists Vim this may go unnoticed commit https://github.com/vim/vim/commit/8903676d3d4c3fcb37d2a55c67370f30806b1626 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 12 14:58:39 2018 +0200 patch 8.1.0044: if a test function exists Vim this may go unnoticed Problem: If a test function exists Vim this may go unnoticed. Solution: Check for a test funtion quitting Vim. Fix tests that did exit Vim.
author Christian Brabandt <cb@256bit.org>
date Tue, 12 Jun 2018 15:00:08 +0200
parents 87012d2b17b5
children 0c845463a0db
comparison
equal deleted inserted replaced
14052:82ca293b28ba 14053:d6866c54a311
196 196
197 func Test_user_is_happy() 197 func Test_user_is_happy()
198 smile 198 smile
199 sleep 300m 199 sleep 300m
200 endfunc 200 endfunc
201
202 " Must be last.
203 func Test_zz_quit_detected()
204 " Verify that if a test function ends Vim the test script detects this.
205 quit
206 endfunc