Mercurial > vim
view src/testdir/test_sort.vim @ 7670:fd31843c7b58 v7.4.1134
commit https://github.com/vim/vim/commit/82e4184d489e2ce950c871354062fca40bf59598
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 19 13:50:57 2016 +0100
patch 7.4.1134
Problem: The arglist test fails on MS-Windows.
Solution: Only check for failure of argedit on Unix.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Jan 2016 14:00:06 +0100 |
parents | 6ffc75d807bd |
children | 20dc2763a3b9 |
line wrap: on
line source
" Test sort() func Test_sort_strings() " numbers compared as strings call assert_equal([1, 2, 3], sort([3, 2, 1])) call assert_equal([13, 28, 3], sort([3, 28, 13])) endfunc func Test_sort_numeric() call assert_equal([1, 2, 3], sort([3, 2, 1], 'n')) call assert_equal([3, 13, 28], sort([13, 28, 3], 'n')) " strings are not sorted call assert_equal(['13', '28', '3'], sort(['13', '28', '3'], 'n')) endfunc func Test_sort_numbers() call assert_equal([3, 13, 28], sort([13, 28, 3], 'N')) call assert_equal(['3', '13', '28'], sort(['13', '28', '3'], 'N')) endfunc