diff options
| author | Bram Moolenaar <Bram@vim.org> | 2016-01-23 21:59:52 +0100 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2016-01-23 21:59:52 +0100 |
| commit | f95534c3d411084d1b6112fe64f6108bf7acbb92 (patch) | |
| tree | 134e2aca8625173143e2e97d378ee48cb960929f /src/testdir/test_viml.vim | |
| parent | 2dedb45260604911035cff2364aca90a69156ed9 (diff) | |
| download | vim-git-f95534c3d411084d1b6112fe64f6108bf7acbb92.tar.gz | |
patch 7.4.1157v7.4.1157
Problem: type() does not work for v:true, v:none, etc.
Solution: Add new type numbers.
Diffstat (limited to 'src/testdir/test_viml.vim')
| -rw-r--r-- | src/testdir/test_viml.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/testdir/test_viml.vim b/src/testdir/test_viml.vim index 07286fb02..39c0667b8 100644 --- a/src/testdir/test_viml.vim +++ b/src/testdir/test_viml.vim @@ -922,6 +922,23 @@ func Test_curlies() endfunc "------------------------------------------------------------------------------- +" Test 91: using type(). {{{1 +"------------------------------------------------------------------------------- + +func Test_type() + call assert_equal(0, type(0)) + call assert_equal(1, type("")) + call assert_equal(2, type(function("tr"))) + call assert_equal(3, type([])) + call assert_equal(4, type({})) + call assert_equal(5, type(0.0)) + call assert_equal(6, type(v:false)) + call assert_equal(6, type(v:true)) + call assert_equal(7, type(v:none)) + call assert_equal(7, type(v:null)) +endfunc + +"------------------------------------------------------------------------------- " Modelines {{{1 " vim: ts=8 sw=4 tw=80 fdm=marker " vim: fdt=substitute(substitute(foldtext(),\ '\\%(^+--\\)\\@<=\\(\\s*\\)\\(.\\{-}\\)\:\ \\%(\"\ \\)\\=\\(Test\ \\d*\\)\:\\s*',\ '\\3\ (\\2)\:\ \\1',\ \"\"),\ '\\(Test\\s*\\)\\(\\d\\)\\D\\@=',\ '\\1\ \\2',\ "") |
