mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-28 14:56:52 +08:00
Add a unit test for the loclist comparison function.
This commit is contained in:
21
test/test_loclist_sorting.vader
Normal file
21
test/test_loclist_sorting.vader
Normal file
@@ -0,0 +1,21 @@
|
||||
Before:
|
||||
let g:loclist = [
|
||||
\ {'lnum': 5, 'col': 5},
|
||||
\ {'lnum': 5, 'col': 4},
|
||||
\ {'lnum': 2, 'col': 10},
|
||||
\ {'lnum': 3, 'col': 2},
|
||||
\]
|
||||
|
||||
Execute (Sort loclist with comparison function):
|
||||
call sort(g:loclist, 'ale#util#LocItemCompare')
|
||||
|
||||
Then (loclist item should be sorted):
|
||||
AssertEqual g:loclist, [
|
||||
\ {'lnum': 2, 'col': 10},
|
||||
\ {'lnum': 3, 'col': 2},
|
||||
\ {'lnum': 5, 'col': 4},
|
||||
\ {'lnum': 5, 'col': 5},
|
||||
\]
|
||||
|
||||
After:
|
||||
unlet g:loclist
|
||||
Reference in New Issue
Block a user