mirror of
https://github.com/inkarkat/vim-ingo-library.git
synced 2026-05-29 11:18:51 +02:00
Tests: Add coverage for existing ingo#dict#FromKeys()
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
" Test creating Dict from keys.
|
||||
|
||||
call vimtest#StartTap()
|
||||
call vimtap#Plan(2)
|
||||
|
||||
call vimtap#Is(ingo#dict#FromKeys([], 1), {}, 'create with empty keys')
|
||||
call vimtap#Is(ingo#dict#FromKeys(['foo', 'bar', 'baz'], 1), {'foo': 1, 'bar': 1, 'baz': 1}, 'create with default value 1')
|
||||
|
||||
call vimtest#Quit()
|
||||
Reference in New Issue
Block a user