mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +00:00
tests: Migrate legacy test sort
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
" A series of tests that can run in one Vim invocation.
|
||||
" This makes testing go faster, since Vim doesn't need to restart.
|
||||
|
||||
source test_sort.vim
|
||||
|
@@ -1,23 +0,0 @@
|
||||
" 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
|
||||
|
||||
func Test_sort_float()
|
||||
call assert_equal([0.28, 3, 13.5], sort([13.5, 0.28, 3], 'f'))
|
||||
endfunc
|
Reference in New Issue
Block a user