aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/function_sort_spec.lua
diff options
context:
space:
mode:
authorJurica Bradaric <jbradaric@gmail.com>2016-05-14 22:41:18 +0200
committerJurica Bradaric <jbradaric@gmail.com>2016-06-09 20:34:43 +0200
commitb2d15fbebc1470057da3c814f0e1539b021da63e (patch)
tree727c101325318adf2eb1887dce494d1b1d5ea4fd /test/functional/legacy/function_sort_spec.lua
parent82da7eed343151e11bb281ea37136812a0a93712 (diff)
downloadrneovim-b2d15fbebc1470057da3c814f0e1539b021da63e.tar.gz
rneovim-b2d15fbebc1470057da3c814f0e1539b021da63e.tar.bz2
rneovim-b2d15fbebc1470057da3c814f0e1539b021da63e.zip
vim-patch:7.4.1464
Problem: When the argument of sort() is zero or empty it fails. Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto) https://github.com/vim/vim/commit/5131c144feb046c5e2b72e6c172159d80ce06b3c
Diffstat (limited to 'test/functional/legacy/function_sort_spec.lua')
-rw-r--r--test/functional/legacy/function_sort_spec.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/functional/legacy/function_sort_spec.lua b/test/functional/legacy/function_sort_spec.lua
index 3347dd9699..fb4a5b7713 100644
--- a/test/functional/legacy/function_sort_spec.lua
+++ b/test/functional/legacy/function_sort_spec.lua
@@ -3,6 +3,8 @@ local clear = helpers.clear
local eq = helpers.eq
local eval = helpers.eval
local execute = helpers.execute
+local exc_exec = helpers.exc_exec
+local neq = helpers.neq
describe('sort', function()
before_each(clear)
@@ -39,4 +41,12 @@ describe('sort', function()
execute('endfunc')
eq({1, 3, 5}, eval("sort([3, 1, 5], 'Compare1')"))
end)
+
+ it('default sort', function()
+ -- docs say omitted, empty or zero argument sorts on string representation
+ eq({'2', 1, 3.3}, eval('sort([3.3, 1, "2"])'))
+ eq({'2', 1, 3.3}, eval([[sort([3.3, 1, "2"], '')]]))
+ eq({'2', 1, 3.3}, eval('sort([3.3, 1, "2"], 0)'))
+ neq(exc_exec('call sort([3.3, 1, "2"], 3)'):find('E474:'), nil)
+ end)
end)