comparison src/testdir/test_quickfix.vim @ 9121:7350959e53c3 v7.4.1844

commit https://github.com/vim/vim/commit/8e8df251bf2505e5decf258397c6069fbe5e2e01 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 25 21:23:21 2016 +0200 patch 7.4.1844 Problem: Using old function name in comment. More functions should start with test_. Solution: Rename function in comment. (Higashi Higashi) Rename disable_char_avail_for_testing() to test_disable_char_avail(). And alloc_fail() to test_alloc_fail().
author Christian Brabandt <cb@256bit.org>
date Wed, 25 May 2016 21:30:08 +0200
parents f221aec7fcca
children 7e403edce82f
comparison
equal deleted inserted replaced
9120:2d179e86d3c0 9121:7350959e53c3
278 call XbufferTests('c') 278 call XbufferTests('c')
279 call XbufferTests('l') 279 call XbufferTests('l')
280 endfunction 280 endfunction
281 281
282 function Test_nomem() 282 function Test_nomem()
283 call alloc_fail(GetAllocId('qf_dirname_start'), 0, 0) 283 call test_alloc_fail(GetAllocId('qf_dirname_start'), 0, 0)
284 call assert_fails('vimgrep vim runtest.vim', 'E342:') 284 call assert_fails('vimgrep vim runtest.vim', 'E342:')
285 285
286 call alloc_fail(GetAllocId('qf_dirname_now'), 0, 0) 286 call test_alloc_fail(GetAllocId('qf_dirname_now'), 0, 0)
287 call assert_fails('vimgrep vim runtest.vim', 'E342:') 287 call assert_fails('vimgrep vim runtest.vim', 'E342:')
288 288
289 call alloc_fail(GetAllocId('qf_namebuf'), 0, 0) 289 call test_alloc_fail(GetAllocId('qf_namebuf'), 0, 0)
290 call assert_fails('cfile runtest.vim', 'E342:') 290 call assert_fails('cfile runtest.vim', 'E342:')
291 291
292 call alloc_fail(GetAllocId('qf_errmsg'), 0, 0) 292 call test_alloc_fail(GetAllocId('qf_errmsg'), 0, 0)
293 call assert_fails('cfile runtest.vim', 'E342:') 293 call assert_fails('cfile runtest.vim', 'E342:')
294 294
295 call alloc_fail(GetAllocId('qf_pattern'), 0, 0) 295 call test_alloc_fail(GetAllocId('qf_pattern'), 0, 0)
296 call assert_fails('cfile runtest.vim', 'E342:') 296 call assert_fails('cfile runtest.vim', 'E342:')
297 297
298 endfunc 298 endfunc
299 299
300 function Test_helpgrep() 300 function Test_helpgrep()