Mercurial > vim
view src/testdir/test_assert.vim @ 7385:160f4b03d8d0 v7.4.997
commit https://github.com/vim/vim/commit/4c7bb12c82914307e6bbb73d95cfb3ba7189813a
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 29 20:32:23 2015 +0100
patch 7.4.997
Problem: "make shadow" was sometimes broken.
Solution: Add a test for it. (James McCoy, closes https://github.com/vim/vim/issues/520)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 29 Dec 2015 20:45:04 +0100 |
parents | b5e9810b389d |
children | bc5de65e499a |
line wrap: on
line source
" Test that the methods used for testing work. func Test_assert_false() call assert_false(0) endfunc func Test_assert_true() call assert_true(1) call assert_true(123) endfunc func Test_assert_equal() let s = 'foo' call assert_equal('foo', s) let n = 4 call assert_equal(4, n) let l = [1, 2, 3] call assert_equal([1, 2, 3], l) endfunc