Mercurial > vim
view src/testdir/test_messages.vim @ 10841:5c0415a8b96e v8.0.0310
patch 8.0.0310: not enough testing for GUI functionality
commit https://github.com/vim/vim/commit/13c724fb3a630257b736a1c91643b396fee917c1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 5 20:54:26 2017 +0100
patch 8.0.0310: not enough testing for GUI functionality
Problem: Not enough testing for GUI functionality.
Solution: Add tests for v:windowid and getwinpos[xy](). (Kazunobu Kuriyama)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 05 Feb 2017 21:00:04 +0100 |
parents | 9200836eee15 |
children | d111462e0173 |
line wrap: on
line source
" Tests for :messages function Test_messages() let oldmore = &more try set nomore " Avoid the "message maintainer" line. let $LANG = '' let arr = map(range(10), '"hello" . v:val') for s in arr echomsg s | redraw endfor let result = '' " get last two messages redir => result 2messages | redraw redir END let msg_list = split(result, "\n") call assert_equal(["hello8", "hello9"], msg_list) " clear messages without last one 1messages clear redir => result redraw | messages redir END let msg_list = split(result, "\n") call assert_equal(['hello9'], msg_list) " clear all messages messages clear redir => result redraw | messages redir END call assert_equal('', result) finally let &more = oldmore endtry endfunction