comparison src/proto/eval.pro @ 13272:abaebba89fd4 v8.0.1510

patch 8.0.1510: cannot test if a command causes a beep commit https://github.com/vim/vim/commit/b48e96f61c87a64e38e3ac50732c92a84a4833b8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 13 12:26:14 2018 +0100 patch 8.0.1510: cannot test if a command causes a beep Problem: Cannot test if a command causes a beep. Solution: Add assert_beeps().
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Feb 2018 12:30:07 +0100
parents 69278c25429d
children f4b4162264b1
comparison
equal deleted inserted replaced
13271:c716b01fb96d 13272:abaebba89fd4
125 void assert_match_common(typval_T *argvars, assert_type_T atype); 125 void assert_match_common(typval_T *argvars, assert_type_T atype);
126 void assert_inrange(typval_T *argvars); 126 void assert_inrange(typval_T *argvars);
127 void assert_bool(typval_T *argvars, int isTrue); 127 void assert_bool(typval_T *argvars, int isTrue);
128 void assert_report(typval_T *argvars); 128 void assert_report(typval_T *argvars);
129 void assert_exception(typval_T *argvars); 129 void assert_exception(typval_T *argvars);
130 void assert_beeps(typval_T *argvars);
130 void assert_fails(typval_T *argvars); 131 void assert_fails(typval_T *argvars);
131 void fill_assert_error(garray_T *gap, typval_T *opt_msg_tv, char_u *exp_str, typval_T *exp_tv, typval_T *got_tv, assert_type_T atype); 132 void fill_assert_error(garray_T *gap, typval_T *opt_msg_tv, char_u *exp_str, typval_T *exp_tv, typval_T *got_tv, assert_type_T atype);
132 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic, int evaluate); 133 int typval_compare(typval_T *typ1, typval_T *typ2, exptype_T type, int type_is, int ic, int evaluate);
133 int typval_copy(typval_T *typ1, typval_T *typ2); 134 int typval_copy(typval_T *typ1, typval_T *typ2);
134 char_u *typval_tostring(typval_T *arg); 135 char_u *typval_tostring(typval_T *arg);