diff options
-rw-r--r-- | src/nvim/testdir/test_ruby.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_ruby.vim b/src/nvim/testdir/test_ruby.vim index 0017f73aef..01901d5db3 100644 --- a/src/nvim/testdir/test_ruby.vim +++ b/src/nvim/testdir/test_ruby.vim @@ -12,6 +12,7 @@ func Test_ruby_change_buffer() endfunc func Test_ruby_evaluate_list() + throw 'skipped: TODO: ' call setline(line('$'), ['2 line 2']) ruby Vim.command("normal /^2\n") let l = ["abc", "def"] @@ -34,6 +35,7 @@ func Test_ruby_evaluate_dict() endfunc func Test_rubydo() + throw 'skipped: TODO: ' " Check deleting lines does not trigger ml_get error. new call setline(1, ['one', 'two', 'three']) |