view src/testdir/test_scroll_opt.vim @ 16564:6d9461653dc5 v8.1.1285

patch 8.1.1285: test17 is old style commit https://github.com/vim/vim/commit/f0ab01f6d868164ed0bb247b6f7b152e6929ef18 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 6 22:00:00 2019 +0200 patch 8.1.1285: test17 is old style Problem: Test17 is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4347)
author Bram Moolenaar <Bram@vim.org>
date Mon, 06 May 2019 22:15:05 +0200
parents f8f505ffc0a6
children 08940efa6b4e
line wrap: on
line source

" Test for reset 'scroll'
"

func Test_reset_scroll()
  let scr = &l:scroll

  setlocal scroll=1
  setlocal scroll&
  call assert_equal(scr, &l:scroll)

  setlocal scroll=1
  setlocal scroll=0
  call assert_equal(scr, &l:scroll)

  try
    execute 'setlocal scroll=' . (winheight(0) + 1)
    " not reached
    call assert_false(1)
  catch
    call assert_exception('E49:')
  endtry

  split

  let scr = &l:scroll

  setlocal scroll=1
  setlocal scroll&
  call assert_equal(scr, &l:scroll)

  setlocal scroll=1
  setlocal scroll=0
  call assert_equal(scr, &l:scroll)

  quit!
endfunc