mirror of
https://github.com/amix/vimrc
synced 2025-06-16 01:25:00 +08:00
Updated plugins
This commit is contained in:
@ -74,8 +74,15 @@ describe 'snippet state'
|
||||
Expect b:snip_state.stop_no == 3
|
||||
end
|
||||
|
||||
it 'does something at the ends'
|
||||
"
|
||||
it 'wraps around when going before the first or after the last stop'
|
||||
let b:snip_state.stops = { 0 : {}, 1 : {}, 2 : {}, 3 : {} }
|
||||
let b:snip_state.stop_count = 4
|
||||
let b:snip_state.stop_no = 3
|
||||
call b:snip_state.find_next_stop(0)
|
||||
Expect b:snip_state.stop_no == 1
|
||||
let b:snip_state.stop_no = 1
|
||||
call b:snip_state.find_next_stop(1)
|
||||
Expect b:snip_state.stop_no == 3
|
||||
end
|
||||
|
||||
end
|
||||
|
Reference in New Issue
Block a user