mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.3446: not enough tests for empty string arguments
Problem: Not enough tests for empty string arguments.
Solution: Add tests, fix type check. (Yegappan Lakshmanan, closes vim/vim#8881)
820d5525ca
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
This commit is contained in:
parent
f6b9791212
commit
ccac34af76
@ -525,6 +525,7 @@ sign_jump({id}, {group}, {buf})
|
|||||||
{buf} and position the cursor at sign {id} in group {group}.
|
{buf} and position the cursor at sign {id} in group {group}.
|
||||||
This is similar to the |:sign-jump| command.
|
This is similar to the |:sign-jump| command.
|
||||||
|
|
||||||
|
If {group} is an empty string, then the global group is used.
|
||||||
For the use of {buf}, see |bufname()|.
|
For the use of {buf}, see |bufname()|.
|
||||||
|
|
||||||
Returns the line number of the sign. Returns -1 if the
|
Returns the line number of the sign. Returns -1 if the
|
||||||
|
@ -691,10 +691,11 @@ func Test_list2blob()
|
|||||||
\ [[0], 0z00],
|
\ [[0], 0z00],
|
||||||
\ [[], 0z],
|
\ [[], 0z],
|
||||||
\ [[0, 0, 0, 0], 0z00000000],
|
\ [[0, 0, 0, 0], 0z00000000],
|
||||||
|
\ [[255, 255], 0zFFFF],
|
||||||
\ [[170, 187, 204, 221], 0zAABB.CCDD],
|
\ [[170, 187, 204, 221], 0zAABB.CCDD],
|
||||||
\ ]
|
\ ]
|
||||||
for t in tests
|
for t in tests
|
||||||
call assert_equal(t[0]->list2blob(), t[1])
|
call assert_equal(t[1], t[0]->list2blob())
|
||||||
endfor
|
endfor
|
||||||
call assert_fails('let b = list2blob([1, []])', 'E745:')
|
call assert_fails('let b = list2blob([1, []])', 'E745:')
|
||||||
call assert_fails('let b = list2blob([-1])', 'E1239:')
|
call assert_fails('let b = list2blob([-1])', 'E1239:')
|
||||||
|
Loading…
Reference in New Issue
Block a user