mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 01:46:29 +00:00
vim-patch:8.1.2166: rubyeval() not tested as a method
Problem: Rubyeval() not tested as a method.
Solution: Change a test case.
4a4981b7cd
This commit is contained in:
@@ -60,7 +60,7 @@ func Test_ruby_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')
|
||||||
|
Reference in New Issue
Block a user