comparison src/testdir/test_normal.vim @ 19724:b3e93a05c3ca v8.2.0418

patch 8.2.0418: code in eval.c not sufficiently covered by tests Commit: https://github.com/vim/vim/commit/8b633135106dda8605463b780573c45b00c22afe Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 20 18:20:51 2020 +0100 patch 8.2.0418: code in eval.c not sufficiently covered by tests Problem: Code in eval.c not sufficiently covered by tests. Solution: Add more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5815)
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 18:30:05 +0100
parents f70a3c1000bb
children 0208534b8a84
comparison
equal deleted inserted replaced
19723:16aa117306ec 19724:b3e93a05c3ca
418 call assert_equal('abcde', expand('`echo abcde`')) 418 call assert_equal('abcde', expand('`echo abcde`'))
419 endif 419 endif
420 420
421 " Test expand(`=...`) i.e. backticks expression expansion 421 " Test expand(`=...`) i.e. backticks expression expansion
422 call assert_equal('5', expand('`=2+3`')) 422 call assert_equal('5', expand('`=2+3`'))
423 call assert_equal('3.14', expand('`=3.14`'))
423 424
424 " clean up 425 " clean up
425 bw! 426 bw!
426 endfunc 427 endfunc
427 428