view src/testdir/test_lua.vim @ 14134:ca2908f449ca

Added tag v8.1.0084 for changeset 352c2832d17f81aa67ef683b90e985c6f96a92db
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jun 2018 19:00:08 +0200
parents 6c3d42d18366
children 2e95ea9afa1e
line wrap: on
line source

" Tests for Lua.
" TODO: move tests from test85.in here.

if !has('lua')
  finish
endif

func Test_luado()
  new
  call setline(1, ['one', 'two', 'three'])
  luado vim.command("%d_")
  bwipe!

  " Check switching to another buffer does not trigger ml_get error.
  new
  let wincount = winnr('$')
  call setline(1, ['one', 'two', 'three'])
  luado vim.command("new")
  call assert_equal(wincount + 1, winnr('$'))
  bwipe!
  bwipe!
endfunc