view src/testdir/test_python2.vim @ 13744:d6553cde1292 v8.0.1744

patch 8.0.1744: on some systems /dev/stdout isn't writable commit https://github.com/vim/vim/commit/9980b37a80dc72eef05bf8862aaf475ab17790a5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 21 20:12:35 2018 +0200 patch 8.0.1744: on some systems /dev/stdout isn't writable Problem: On some systems /dev/stdout isn't writable. Solution: Skip test if writing is not possible. (James McCoy, closes https://github.com/vim/vim/issues/2830)
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Apr 2018 20:15:08 +0200
parents 27b42717662b
children c15bef307de6
line wrap: on
line source

" Test for python 2 commands.
" TODO: move tests from test87.in here.

if !has('python')
  finish
endif

func Test_pydo()
  " Check deleting lines does not trigger ml_get error.
  py import vim
  new
  call setline(1, ['one', 'two', 'three'])
  pydo 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'])
  pydo vim.command("new")
  call assert_equal(wincount + 1, winnr('$'))
  bwipe!
  bwipe!
endfunc