comparison src/testdir/test_tcl.vim @ 19740:a653d1a165ef v8.2.0426

patch 8.2.0426: some errors were not tested for Commit: https://github.com/vim/vim/commit/9b9be007e7d674f49fc2b650f840d08532b180ad Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 22 14:41:22 2020 +0100 patch 8.2.0426: some errors were not tested for Problem: Some errors were not tested for. Solution: Add tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/5824)
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Mar 2020 14:45:04 +0100
parents 9606c0adc148
children 04ef2ccf2519
comparison
equal deleted inserted replaced
19739:c49354aed1b2 19740:a653d1a165ef
651 call delete('Xtcl_file') 651 call delete('Xtcl_file')
652 endfunc 652 endfunc
653 653
654 " Test exiting current Tcl interpreter and re-creating one. 654 " Test exiting current Tcl interpreter and re-creating one.
655 func Test_tcl_exit() 655 func Test_tcl_exit()
656 call assert_fails('tcl exit 1 1', 'wrong # args: should be "exit ?returnCode?"')
657 call assert_fails('tcl exit x', 'expected integer but got "x"')
658
656 tcl set foo "foo" 659 tcl set foo "foo"
657 call assert_fails('tcl exit 3', 'E572: exit code 3') 660 call assert_fails('tcl exit 3', 'E572: exit code 3')
658 661
659 " The Tcl interpreter should have been deleted and a new one 662 " The Tcl interpreter should have been deleted and a new one
660 " is re-created with the next :tcl command. 663 " is re-created with the next :tcl command.