comparison src/testdir/test_python3.vim @ 24685:04205b7d67d5 v8.2.2881

patch 8.2.2881: various pieces of code not covered by tests Commit: https://github.com/vim/vim/commit/611728f80604dd56960e8c197e5749d203c8feb1 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon May 24 15:15:47 2021 +0200 patch 8.2.2881: various pieces of code not covered by tests Problem: Various pieces of code not covered by tests. Solution: Add a few more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8245)
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 May 2021 15:30:03 +0200
parents 8feb0450b690
children eb6e4f0ba31d
comparison
equal deleted inserted replaced
24684:1706f44ede8e 24685:04205b7d67d5
509 func Test_python3_window() 509 func Test_python3_window()
510 " Test for setting the window height 510 " Test for setting the window height
511 10new 511 10new
512 py3 vim.current.window.height = 5 512 py3 vim.current.window.height = 5
513 call assert_equal(5, winheight(0)) 513 call assert_equal(5, winheight(0))
514 py3 vim.current.window.height = 3.2
515 call assert_equal(3, winheight(0))
514 516
515 " Test for setting the window width 517 " Test for setting the window width
516 10vnew 518 10vnew
517 py3 vim.current.window.width = 6 519 py3 vim.current.window.width = 6
518 call assert_equal(6, winwidth(0)) 520 call assert_equal(6, winwidth(0))