0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.1.2166: rubyeval() not tested as a method

Problem:    Rubyeval() not tested as a method.
Solution:   Change a test case.
This commit is contained in:
Bram Moolenaar
2019-10-16 22:36:11 +02:00
parent 2e693a88b2
commit 4a4981b7cd
2 changed files with 3 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ func Test_set_cursor()
" Check that movement after setting cursor position keeps current column. " Check that movement after setting cursor position keeps current column.
normal j normal j
call assert_equal([2, 6], [line('.'), col('.')]) call assert_equal([2, 6], [line('.'), col('.')])
call assert_equal([2, 5], rubyeval('$curwin.cursor')) call assert_equal([2, 5], '$curwin.cursor'->rubyeval())
call assert_fails('ruby $curwin.cursor = [1]', call assert_fails('ruby $curwin.cursor = [1]',
\ 'ArgumentError: array length must be 2') \ 'ArgumentError: array length must be 2')

View File

@@ -753,6 +753,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
2166,
/**/ /**/
2165, 2165,
/**/ /**/