diff src/testdir/test_ruby.vim @ 18344:69db186daf4c v8.1.2166

patch 8.1.2166: rubyeval() not tested as a method Commit: https://github.com/vim/vim/commit/4a4981b7cd57b0b2289ed4f9d621ef4d90d767f0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 16 22:36:11 2019 +0200 patch 8.1.2166: rubyeval() not tested as a method Problem: Rubyeval() not tested as a method. Solution: Change a test case.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Oct 2019 22:45:05 +0200
parents 8e9e9124c7a2
children 2a017e9dc6da
line wrap: on
line diff
--- a/src/testdir/test_ruby.vim
+++ b/src/testdir/test_ruby.vim
@@ -46,7 +46,7 @@ func Test_set_cursor()
   " Check that movement after setting cursor position keeps current column.
   normal j
   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]',
         \           'ArgumentError: array length must be 2')