view src/testdir/test_ruby.in @ 7645:1529ae1c456a v7.4.1122

commit https://github.com/vim/vim/commit/42c9cfa7f4d2f176234e385573ff2fb1f61915e5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 17 18:49:57 2016 +0100 patch 7.4.1122 Problem: Test 92 and 93 fail when using gvim on a system with a non utf-8 locale. Solution: Avoid using .gvimrc by adding -U NONE. (Yukihiro Nakadaira)
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jan 2016 19:00:04 +0100
parents 18ec2c5a5ce7
children
line wrap: on
line source

Tests for ruby interface.     vim: set ft=vim :

STARTTEST
:so small.vim
:set nocompatible viminfo+=nviminfo
:if !has('ruby') | e! test.ok | wq! test.out | endif
:" change buffer contents
:ruby VIM.command("normal /^1\n")
:ruby $curbuf.line = "1 changed line 1"
:" evaluate a List
:ruby VIM.command("normal /^2\n")
:let l = ["abc", "def"]
:ruby << EOF
curline = $curbuf.line_number
l = VIM.evaluate("l");
$curbuf.append(curline, l.join("\n"))
EOF
:normal j
:.rubydo $_ = $_.gsub(/\n/, '/')
:?^1?,$w! test.out
:qa!
ENDTEST

1 line 1
2 line 2